import { ElementType, FC } from 'react';
import { DropdownProps as BSDRopdownProps } from 'reactstrap';
export interface DropdownProps extends BSDRopdownProps {
    tag?: ElementType;
    inNavbar?: boolean;
    textCenter?: boolean;
    theme?: string;
    /** Classi aggiuntive da usare per il componente Button */
    className?: string;
    testId?: string;
}
export declare const Dropdown: FC<DropdownProps>;
