import { UseQueryResult } from '@tanstack/react-query';
import { IDProps } from '../interfaces';
import { DetailResponse, ErrorResponse, RecordType } from '../types';

interface DataPanelProps extends IDProps {
    dataPanelTabKey: string;
    setDataPanelTabKey: (key: string) => void;
    queryHook: (props: IDProps) => UseQueryResult<DetailResponse<RecordType> | ErrorResponse, Error>;
    setUnpublished: () => void;
    dataFields: Map<string, string>;
}
declare function DataPanel(props: DataPanelProps): import("react/jsx-runtime").JSX.Element;
export default DataPanel;
