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