/** Configuration options for the high-level React Query dev tools modal wrapper. */ export interface ReactQueryDevToolsModalProps { /** Controls whether the modal is rendered. */ visible: boolean; /** Fired when the modal should dismiss (after internal state resets). */ onClose: () => void; /** Callback when minimize is requested - receives current modal state for restoration */ onMinimize?: (modalState: any) => void; /** * If true, reuse the shared modal dimension keys so sizing is consistent with other dev tools. */ enableSharedModalDimensions?: boolean; } /** * Opinionated wrapper around `ReactQueryModal` that manages selection state and filters so * consumers can drop in the full dev tools experience with a single component. */ export declare function ReactQueryDevToolsModal({ visible, onClose, onMinimize, enableSharedModalDimensions, }: ReactQueryDevToolsModalProps): import("react").JSX.Element | null; //# sourceMappingURL=ReactQueryDevToolsModal.d.ts.map