import { QueryKeyUsedInfo } from './types';
/**
 *
 * @param initialOpen - whether the viewer is open
 * @param importFunc - a function that imports the query key used info
 * @example
 * <QueryKeyUsedViewer
 *     initialOpen={true}
 *     importFunc={() => import('./query-key-used-info')}
 * />
 * @returns
 */
declare const QueryKeyUsedViewer: ({ initialOpen, getInfo }: {
    initialOpen?: boolean;
    getInfo: () => QueryKeyUsedInfo[];
}) => import("react/jsx-runtime").JSX.Element | null;
export default QueryKeyUsedViewer;
//# sourceMappingURL=QueryKeyUsedViewer.d.ts.map