import type { Middleware } from 'stylis'; type MiddlewareOptions = { isPropertySupported?: (property: string) => boolean; isPropertyValueSupported?: (property: string, value: string) => boolean; }; export declare const createTranspileMiddleware: (options?: MiddlewareOptions) => Middleware; /** * Transpiles CSS Modules content to CSS rules. */ export declare const transpile: (selector: string, content: string, middleware?: Middleware) => string; export {}; //# sourceMappingURL=transpile.d.ts.map