import * as React from 'react'; import type { ButtonProps } from '../Button/Button.tsx'; export type ListboxDropdownOption = { key: string; label: string; }; export type ListboxDropdownProps = { checkPosition?: 'left' | 'right'; className?: string; contentClassName?: string; disabled?: boolean; options: T[]; selected: T[]; setSelected: React.Dispatch>; title: string; triggerClassName?: string; variant?: ButtonProps['variant']; widthFull?: boolean; }; export declare const ListboxDropdown: ({ contentClassName, disabled, options, selected, setSelected, title, triggerClassName, widthFull }: ListboxDropdownProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ListboxDropdown.d.ts.map