type Breakpoints = 'mobile' | 'tablet' | 'desktop'; type ResponsiveProp = { [key in Breakpoints]: string; }; type StaticProp = string; export declare function generateStaticStylePropsClasses(componentClass: string, property: StaticProp, type?: string): string; export declare function generateResponsiveStylePropsClasses(componentClass: string, property: ResponsiveProp, type?: string): string; export declare function generateStylePropsClassNames

(componentClass: string, property: P, type?: string): string; export {};