import { type SetProps } from '../../interaction'; export type FormSetProps

= SetProps

& { name?: string | string[]; defaultValues?: Partial

[]; requiredSet?: boolean; removeValue?: string | Blob; }; export declare function FormSet

({ defaultValues, removeValue, value, onchange, requiredSet, name, ...props }: FormSetProps

): any;