import { MultiselectProps } from '@cloudscape-design/components'; import { Control, FieldPath, FieldPathValue, FieldValues, RegisterOptions } from 'react-hook-form'; export interface CMultiselectProps extends Omit { name: FieldPath; control?: Control; options?: MultiselectProps.Options; defaultValue?: FieldPathValue>; rules?: Omit>, "valueAsNumber" | "valueAsDate" | "setValueAs" | "disabled">; shouldUnregister?: boolean; } declare const CMultiselect: ({ name, control, options, defaultValue, rules, onBlur, onChange, shouldUnregister, ...props }: CMultiselectProps) => import("react/jsx-runtime").JSX.Element; export default CMultiselect;