import type { PluginConfig } from '../types';
import type { Service } from '@vitjs/core';
export interface ExportStaticOptions {
    config: PluginConfig;
    service: Service;
}
export default function exportStatic(options: ExportStaticOptions): void;
