interface ClearInstanceState { status: string; isComplete: boolean; error: string | null; warnings: string[]; } interface ClearScope { environment_id?: string; project_id?: string; organization_id?: string; } export declare const useClearInstance: () => { state: ClearInstanceState; setState: import("react").Dispatch>; clearInstances: (scope: ClearScope) => Promise<{ warnings: string[]; }>; }; export {};