import type { Breakpoint, Style } from '../../../types'; export declare const cleanRule: (rule: string) => string; export declare const stringifyRule: (rule: CSSRule | null) => string; export declare const stringifyStyle: (style: Style) => string; export declare const stringifyBreakpoint: (breakpoint: Breakpoint) => (selector?: number | string) => string; export declare const makeClassRewrite: (cssText: string) => (selector?: number | string) => string;