1 | import React from 'react';
|
2 | interface QueryErrorResetBoundaryValue {
|
3 | clearReset: () => void;
|
4 | isReset: () => boolean;
|
5 | reset: () => void;
|
6 | }
|
7 | export declare const useQueryErrorResetBoundary: () => QueryErrorResetBoundaryValue;
|
8 | export interface QueryErrorResetBoundaryProps {
|
9 | children: ((value: QueryErrorResetBoundaryValue) => React.ReactNode) | React.ReactNode;
|
10 | }
|
11 | export declare const QueryErrorResetBoundary: ({ children, }: QueryErrorResetBoundaryProps) => JSX.Element;
|
12 | export {};
|