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({ updateDefaultValue }: MultipleProps): import("react/jsx-runtime").JSX.Element | null; export default Multiple;