import { IDropdownOptionLabelProps, IDropdownOptionProps } from "./Dropdown.interface"; export declare const DropdownComponents: { OptionLabel: ({ leftIcon, label, supportingText, isPersonVariant, }: IDropdownOptionLabelProps) => import("react/jsx-runtime").JSX.Element; Option: ({ option, variant, isFocused, isSelected, onSelect, id, }: IDropdownOptionProps) => import("react/jsx-runtime").JSX.Element; };