import { type ComputedRef } from "vue"; interface UseDataGridAppDiagnosticsPanelOptions { readDiagnostics: () => TSnapshot | null; } export interface UseDataGridAppDiagnosticsPanelResult { isDiagnosticsPanelOpen: ComputedRef; diagnosticsSnapshot: ComputedRef; openDiagnosticsPanel: () => void; closeDiagnosticsPanel: () => void; refreshDiagnosticsPanel: () => void; } export declare function useDataGridAppDiagnosticsPanel(options: UseDataGridAppDiagnosticsPanelOptions): UseDataGridAppDiagnosticsPanelResult; export {}; //# sourceMappingURL=useDataGridAppDiagnosticsPanel.d.ts.map