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