///
import { Expandable } from '../../Expandable';
import { Button, IButtonProps } from '../../Button';
import { IMenuButtonProps } from '../../Menu';
export interface ISplitButtonProps {
/**
* Props to pass to the main button of the split button.
*
* Primary, Disabled, and Subtle props are overriden by Split button props
*/
buttonProps: IButtonProps;
/**
* Ref of the main button
*/
buttonRef?: string | ((instance: Button | null) => void) | React.RefObject