export interface MultipleProps {
    /**
     * If true, toggling the 'multiple' value will toggle the default value accordingly.
     *
     * E.g. `defaultValue: 'aaa'` becomes `defaultValue: ['aaa']` when multiple switches
     * from `false` to `true`.
     */
    updateDefaultValue?: boolean;
}
declare function Multiple<T = unknown>({ updateDefaultValue }: MultipleProps): import("react/jsx-runtime").JSX.Element;
export default Multiple;
