import { type Selection } from "react-aria-components"; import React from "react"; import type { MultiSelectProps } from "./types"; interface MultiSelectValueProps { excludeFromTabOrder?: boolean; isDisabled?: boolean; isLoading?: boolean; selectedKeys?: Selection; items?: Iterable<{ label: string; value: string; }>; placeholder?: string; size?: MultiSelectProps["size"]; triggerRef: React.RefObject; isInvalid?: boolean; } declare const MultiSelectValue: React.FC; export { MultiSelectValue };