import type { PluginCreator } from 'postcss'; import { DirectionFlow } from './lib/types'; /** postcss-logical-overflow plugin options */ export type pluginOptions = { /** Sets the direction for inline. default: left-to-right */ inlineDirection?: DirectionFlow; }; declare const creator: PluginCreator; export default creator;