You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
4 lines
398 B
4 lines
398 B
import type { IStyledComponentFactory, RuleSet, StyledOptions, WebTarget } from '../types';
|
|
declare function createStyledComponent<Target extends WebTarget, OuterProps extends {}, Statics = unknown>(target: Target, options: StyledOptions<'web', OuterProps>, rules: RuleSet<OuterProps>): ReturnType<IStyledComponentFactory<'web', Target, OuterProps, Statics>>;
|
|
export default createStyledComponent;
|