export = AutoImport; /** * @typedef {{ * from: string * import?: ( * string | {import: string, as: string} * )[] * default?: string * namespace?: string * }} ImportEntry */ /** @type {import('unified').Plugin} */ declare const AutoImport: import('unified').Plugin; declare namespace AutoImport { export { ImportEntry }; } type ImportEntry = { from: string; import?: (string | { import: string; as: string; })[]; default?: string; namespace?: string; };