import postcss from "postcss"; //#region src/tasks/postcss.d.ts type BossPostcssOptions = { baseDir?: string; dirDependencies?: boolean; }; declare const runPostcss: (root: postcss.Root, result: postcss.Result, options?: BossPostcssOptions) => Promise; //#endregion export { BossPostcssOptions, runPostcss };