import * as React from 'react'; import { TextButtonProps } from './TextButton'; import { DropdownCustomizationProps } from '../Dropdown/DropdownContent'; export interface ButtonOption { label: string; } export interface DualButtonProps extends TextButtonProps { /** * Required. An object containing customization properties for the dropdown. */ dropdownCustomizationProps: DropdownCustomizationProps; /** * Optional. An array of strings representing the values in the dropdown menu. */ dropdownMenuValues?: string[]; /** * Optional. A function to be called when the values in the dropdown menu change. * It should return void, a boolean, or undefined. */ setDropdownMenuValues?: (values: string[]) => void | boolean | undefined; } declare const DualFunctionButton: React.FunctionComponent; export default DualFunctionButton;