import postcss from "postcss"; interface RawContent { extension: string; raw: string; } interface RawCSS { raw: string; } type ExtractorFunction = (content: string) => string[]; interface Extractors { extensions: string[]; extractor: ExtractorFunction; } interface UserDefinedOptions { content: Array; css: Array; defaultExtractor?: ExtractorFunction; extractors?: Array; fontFace?: boolean; keyframes?: boolean; output?: string; rejected?: boolean; stdin?: boolean; stdout?: boolean; variables?: boolean; whitelist?: string[]; whitelistPatterns?: Array; whitelistPatternsChildren?: Array; } declare const purgeCSSPlugin: postcss.Plugin>; export { purgeCSSPlugin as default };