interface CSSRule {
    sel: string[][][];
    decl: [string, string][];
}
interface OneInfo {
    content: string[];
    rules: CSSRule[];
    imports?: string[];
}
type StyleInfo = Record<string, OneInfo>;
export declare function loadStyleFromJSON(styleInfo: StyleInfo, configEnableCSSSelector: boolean, transformVW: boolean, transformVH: boolean, transformREM: boolean, entryName?: string): Uint8Array;
export {};
