export declare type Param = boolean | number | string; export interface StateMap { [key: string]: Param; } export interface Stylesheet { namespace: string; root: string; get: (localName: string) => string; cssStates: (stateMapping: StateMap) => StateMap; } export interface RuntimeHelpers { $get: (localName: string) => string; $cssStates: (stateMapping?: StateMap | null) => StateMap; } export declare type StylesheetLocals = { [key: string]: string; } & { $stylesheet: Stylesheet; } & RuntimeHelpers; export declare type RuntimeStylesheet = StylesheetLocals & ((className: string, states?: StateMap | null, props?: PartialProps) => { [key: string]: string; }); export interface PartialProps { className?: string; [key: string]: any; } export declare type Pojo = { [key: string]: T; } & object; export declare type PartialObject = Partial & object; export declare type CSSObject = any & object; export interface ParsedValue { type: string; value: string; nodes?: any; resolvedValue?: string; url?: string; } export interface StateTypeValidator { name: string; args: string[]; } export declare type StateArguments = Array; export interface StateParsedValue { type: string; defaultValue?: string; arguments: StateArguments; } //# sourceMappingURL=types.d.ts.map