/** * Takes a prop/style configuration and templates the classes * to match the styleMaps classes returning a concatenated classname string */ import { OptionalResponsiveProperty, ResponsiveProperty } from '../typings/responsive-properties'; export declare const generateResponsiveClassnames: (config: ResponsiveProperty> | OptionalResponsiveProperty>, styleMap: Record) => string[];