import { ElementType, FC, HTMLAttributes } from 'react';
export interface DropdownToggleProps extends HTMLAttributes {
caret?: boolean;
tag?: ElementType;
inNavbar?: boolean;
testId?: string;
/** Classi aggiuntive da usare per il componente Button */
color?: string;
className?: string;
outline?: boolean;
}
export declare const DropdownToggle: FC;