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;
