import { IStyleSet } from './IStyleSet'; import { DeepPartial } from './DeepPartial'; /** * A style function takes in styleprops and returns a partial styleset. * {@docCategory IStyleFunction} */ export declare type IStyleFunction> = (props: TStylesProps) => DeepPartial; /** * Represents either a style function that takes in style props and returns a partial styleset, * or a partial styleset object. * {@docCategory IStyleFunctionOrObject} */ export declare type IStyleFunctionOrObject> = IStyleFunction | DeepPartial;