import React, { ReactNode } from 'react';
import { PublicComponentProps } from './types';
export interface DropdownProps extends PublicComponentProps {
    children?: Exclude<ReactNode, String | Number | Boolean>;
    variant?: 'default' | 'simple' | 'navtab';
    as?: keyof JSX.IntrinsicElements;
    disabled?: boolean;
    title?: ReactNode;
    [passthruProps: string | number | symbol]: unknown;
}
export declare const Dropdown: ({ className, variant, as: AsComponentProp, disabled, title, ...passthruProps }: DropdownProps) => React.JSX.Element;
//# sourceMappingURL=Dropdown.d.ts.map