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