UNPKG

climb-onyx-gui

Version:
12 lines (11 loc) 519 B
import { UseQueryResult } from '@tanstack/react-query'; import { IDProps } from '../interfaces'; import { ErrorResponse, RecordType, ListResponse } from '../types'; interface RelatedPanelProps extends IDProps { queryHook: (props: IDProps) => UseQueryResult<ListResponse<RecordType> | ErrorResponse, Error>; title: string; description: string; defaultFileNamePrefix: string; } declare function RelatedPanel(props: RelatedPanelProps): import("react/jsx-runtime").JSX.Element; export default RelatedPanel;