import type { PluginCreator } from 'postcss'; declare const creator: PluginCreator; export default creator; export declare enum DirectionFlow { TopToBottom = "top-to-bottom", BottomToTop = "bottom-to-top", RightToLeft = "right-to-left", LeftToRight = "left-to-right" } /** postcss-logical-viewport-units plugin options */ export declare type pluginOptions = { /** Preserve the original notation. default: false */ preserve?: boolean; /** Sets the direction for inline. default: left-to-right */ inlineDirection?: DirectionFlow; }; export { }