export interface DeviceStyleMap {
    desktop: {
        normal: string[];
        hover: string[];
    };
    tablet: {
        normal: string[];
        hover: string[];
    };
    mobile: {
        normal: string[];
        hover: string[];
    };
}
export declare const longValueToShortValue: {
    "space-between": string;
    "space-around": string;
    "space-evenly": string;
    "justify-between": string;
    "justify-around": string;
    "justify-evenly": string;
    "align-start": string;
    "align-end": string;
    "align-center": string;
    "align-baseline": string;
    "align-stretch": string;
};
export declare const deviceToShortGen: {
    tablet: string;
    mobile: string;
};
export declare const pseudoClassToShortGen: {
    hover: string;
};
interface ConversionResult {
    [className: string]: string;
}
export declare function convertCssPropertyToShorthand(cssText: string, allClasses: string[]): ConversionResult;
export {};
