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