;
/**
* All valid css theming props
*/
export declare type ICssProps = ICssMapperProps & {
css?: ICssProp;
};
/**
* Maps the given theme props to css properties
* @param props The properties to map
* @param theme The theme to use for the mapping
* @returns The pure css properties
*/
export declare function mapCssProps>(props: P, theme: ITheme): TPropMapperOutputs & (P["css"] extends (theme: ITheme) => infer V ? V : P["css"]);
//# sourceMappingURL=mapCssProps.d.ts.map