import { ResourceExportState } from '../../commands/resource/types.js'; interface ExportScope { environment_id?: string; project_id?: string; organization_id?: string; } export declare const useResourceExport: () => { state: ResourceExportState; setState: import("react").Dispatch>; exportJavaCode: (scope: ExportScope) => Promise<{ code: string; warnings: string[]; }>; exportFrontendCode: (scope: ExportScope) => Promise<{ code: string; warnings: string[]; }>; }; export {};