import type { PluginCreator } from 'postcss'; /** postcss-font-format-keywords plugin options */ export type pluginOptions = { /** Preserve the original notation. default: false */ preserve?: boolean; }; declare const creator: PluginCreator; export default creator;