export type Options = { defaultPageSize: [string, string]; mediaType?: string; }; interface PrecssPlugin { (opts?: T): { postcssPlugin: string; }; postcss: boolean; } declare const plugin: PrecssPlugin; export default plugin; export declare const styleAttrPlugin: PrecssPlugin; export declare function replaceMediaType(mediaQuery: string, mediaType: string): string; export declare function getPageSize(value: string, defaultSize?: [string, string]): [string, string]; export declare const importUnfold: PrecssPlugin<{ from: string; }>; export declare const importFold: PrecssPlugin;