climb-onyx-gui
Version:
Onyx Graphical User Interface
13 lines (11 loc) • 520 B
TypeScript
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;