import React from 'react'; export interface DropdownButtonProps { /** content rendered to the left of the carat */ children?: React.ReactNode; /** Controls disabled state of dropdown button */ disabled?: boolean; /** Controls the button going full width */ isFullWidth?: boolean; /** Controls active state of dropdown */ isActive?: boolean; } declare const DropdownButton: React.ForwardRefExoticComponent>; export default DropdownButton;