import { default as React } from 'react'; import { Size } from '../../../types'; interface MultiSelectContentProps extends React.PropsWithChildren { id?: string; width?: Size | 'auto'; isDisabled?: boolean; 'aria-label'?: string; } export declare const MultiSelectContent: React.FC; export {};