import { Builder, Root } from 'postcss'; /** * Build the styles statement with lazy loading. */ export declare const buildLazyStylesStatement: (builder: Builder, node: Root, classMap: Record, injectStatement: string | undefined, attachOriginalClassName: boolean, hasRuntimeOptions: boolean) => void; /** * Build the styles statement with on demand style loading. */ export declare const buildOnDemandStylesStatement: (builder: Builder, node: Root, classMap: Record, injectStatement: string | undefined, attachOriginalClassName: boolean, hasRuntimeOptions: boolean) => void; /** * Build the styles statement with on instant style loading. */ export declare const buildInstantStylesStatement: (builder: Builder, node: Root, classMap: Record, injectStatement: string | undefined, attachOriginalClassName: boolean, hasRuntimeOptions: boolean) => void; //# sourceMappingURL=styles-statement.d.ts.map