/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { Component } from 'react'; declare class InovuaSplitButton extends Component { constructor(props: any); onExpandedChange(expanded: any): void; getExpanded(): any; handleBlur(event: any): void; handleFocus(event: any): void; render(): JSX.Element; getCommonProps(): { disabled: any; rtl: any; theme: any; onFocus: (event: any) => void; onBlur: (event: any) => void; }; getButtonProps(): any; getDropdownButtonProps(): any; } export default InovuaSplitButton;