import { RegisterOptions } from 'react-hook-form'; import { AllowedValueWithCode } from '@zeniai/client-epic-state'; export interface TaxStatusPickerValue { allTaxStatuses: AllowedValueWithCode[]; selectedValue?: AllowedValueWithCode; } export interface Props { name: string; value: TaxStatusPickerValue; registerOptions?: RegisterOptions; } declare const TaxStatusPickerField: ({ value: defaultTaxStatus, registerOptions, name, }: Props) => import("react/jsx-runtime").JSX.Element; export default TaxStatusPickerField;