export type CustomStyleHookMapping = { [Property in keyof State]?: (state: State[Property]) => Record | null; }; export declare function getStyleHookProps>(state: State, customMapping?: CustomStyleHookMapping): Record;