import type { PluginOption } from 'vite'; export interface ExcelPluginOptions { keepEmptyCells?: boolean; keepBlankRows?: boolean; header?: 'auto' | number | Array; raw?: boolean; } export declare function createExcelPlugin(options?: ExcelPluginOptions): PluginOption;