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