import { FC, ReactNode } from 'react';
import { ComponentBaseProps } from '../core';
import { PopoverProps } from '../data-display/Popover/types';
import { ButtonProps } from './Button';
export interface DropdownButtonProps extends ComponentBaseProps, Omit<ButtonProps, 'content'>, Pick<PopoverProps, 'placement'> {
    content?: ReactNode;
    popoverDescription?: ReactNode;
    popoverProps?: Partial<PopoverProps>;
    popoverTitle?: ReactNode;
    showToggleIcon?: boolean;
    titleRowClassName?: string;
}
export declare const DropdownButton: FC<DropdownButtonProps>;
