Files
Speedtest-Tracker/conf/site/node_modules/react-bootstrap/esm/SplitButton.d.ts
2020-07-08 12:08:03 +01:00

18 lines
668 B
TypeScript

import React from 'react';
import { PropsFromToggle } from './DropdownToggle';
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
export interface SplitButtonProps extends PropsFromToggle, BsPrefixPropsWithChildren {
id: string | number;
menuRole?: string;
onClick?: React.MouseEventHandler<this>;
renderMenuOnMount?: boolean;
rootCloseEvent?: 'click' | 'mousedown';
target?: string;
title: React.ReactNode;
toggleLabel?: string;
type?: any;
}
declare type SplitButton = BsPrefixRefForwardingComponent<'div', SplitButtonProps>;
declare const SplitButton: SplitButton;
export default SplitButton;