import type { CenterRecordType } from "../../../center"; import React from 'react'; export declare function LogsProvider({ children }: { children: React.ReactNode; }): React.JSX.Element; export declare function useLogs(): { logs: CenterRecordType[]; isUpdating: boolean; isEnabled: boolean; setIsEnabled: (value: boolean) => void; }; export declare function importLogs(): void; export declare function exportLogs(): Promise; export declare function restoreStates(record: CenterRecordType | undefined): void; export declare function clearLogs(): void; export declare function isErrorLog(selected: CenterRecordType | undefined): boolean; export declare function logError(selected: CenterRecordType | undefined): void;