import { PluginCreator } from "postcss"; export interface Options { /** * Wraps the entire rule inside `@layer` syntax. */ layer?: string; /** * Where to search for css props, globbing allowed. */ files?: string[]; /** * Selector where the props are pushed to instead of `:root`. */ custom_selector?: string; } type Props = Record; export type PostcssJitPropsOptions = Options & Props; declare const postcssJitProps: PluginCreator; export default postcssJitProps;