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