import { CosmosConfig } from '../config/shared';
export declare type ExportPluginArgs = {
    cosmosConfig: CosmosConfig;
};
export declare type ExportPlugin = (args: ExportPluginArgs) => unknown;
export declare function generateExport(plugins?: ExportPlugin[]): Promise<void>;
