import { IMenuItemProps } from '@blueprintjs/core'; import { PopoverProps } from 'components/Popover/Popover'; import React from 'react'; import { ButtonProps } from '../..'; declare type SplitButtonProps = Omit & { className?: string; dropdownDisabled?: boolean; popoverProps?: PopoverProps; usePortal?: boolean; }; export declare const SplitButton: React.FC; export declare const SplitButtonOption: React.FC; export {};