import postcss from 'postcss'; interface PostcssPercentageOptions { floor?: boolean; precision?: number; trimTrailingZero?: boolean; } declare const postcssPercentage: { (opts?: PostcssPercentageOptions): { Once(root: postcss.Root, { result }: { result: postcss.Result; }): void; postcssPlugin: string; }; postcss: boolean; }; export default postcssPercentage;