import { ExportState } from '../../commands/env/export/types.js'; interface ExportScope { environment_id?: string; project_id?: string; organization_id?: string; } export declare const useExport: () => { state: ExportState; setState: import("react").Dispatch>; exportConfig: (scope: ExportScope) => Promise<{ hcl: string; warnings: string[]; }>; }; export {};