import postcss, { AtRule } from 'postcss'; import type { StyleXPluginOption, TransformOptions } from './types'; declare function createBuilder(): { findStyleXAtRule: (root: postcss.Root) => AtRule | null; configure: (options: StyleXPluginOption) => void; build: ({ shouldSkipTransformError }: TransformOptions) => string; getDependencies: () => ({ type: 'dir-dependency'; dir: string; glob: string; } | { type: 'dependency'; file: string; } | null)[]; }; export default createBuilder; //# sourceMappingURL=builder.d.ts.map