///
import { IOptionLabelProps, IOptionProps, IOptionContentProps, IContainerProps } from "./Dropdown.interface";
export declare const DropdownComponents: {
Container: import("react").ForwardRefExoticComponent>;
Option: ({ option, optionVariant, className, onSelect, isSelected, id, }: IOptionProps) => import("react/jsx-runtime").JSX.Element;
OptionContent: ({ option, variant, isFocused, isSelected, onSelect, id, formatOptionLabel, }: IOptionContentProps) => import("react/jsx-runtime").JSX.Element;
OptionLabel: ({ leftIcon, label, supportingText, isPersonVariant, labelClassName, iconClassName, }: IOptionLabelProps) => import("react/jsx-runtime").JSX.Element;
};