import type { PluginCreator } from 'postcss'; /** postcss-global-data plugin options */ export type pluginOptions = { /** List of files to be used as context */ files?: Array; }; declare const creator: PluginCreator; export default creator;