import type { CSSProperties, ReactNode } from 'react'; interface Props { header: ReactNode; body: ReactNode; value?: RecordType[]; onChange?: (value: RecordType[]) => void; disabled?: boolean; fieldsName: { label: string; value: string; }; loading?: boolean; className?: string; style?: CSSProperties; } export default function SelectPanel(props: Props): JSX.Element; export {};