1 | import * as React from 'react';
|
2 | import { ButtonType } from '@restart/ui/Button';
|
3 | import { DropdownProps } from './Dropdown';
|
4 | import { PropsFromToggle } from './DropdownToggle';
|
5 | import { BsPrefixProps } from './helpers';
|
6 | export interface SplitButtonProps extends Omit<DropdownProps, 'title'>, PropsFromToggle, BsPrefixProps {
|
7 | menuRole?: string;
|
8 | renderMenuOnMount?: boolean;
|
9 | rootCloseEvent?: 'click' | 'mousedown';
|
10 | target?: string;
|
11 | title: React.ReactNode;
|
12 | toggleLabel?: string;
|
13 | type?: ButtonType;
|
14 | flip?: boolean;
|
15 | }
|
16 |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 |
|
23 |
|
24 |
|
25 |
|
26 | declare const SplitButton: React.ForwardRefExoticComponent<SplitButtonProps & React.RefAttributes<HTMLElement>>;
|
27 | export default SplitButton;
|