import { SplitButtonProps } from './split-button.types'; export type * from './split-button.types'; /** * # SplitButton * * A split-button component that combines a primary action button with a dropdown menu. * * Shows a primary action button + dropdown trigger. The primary button automatically * executes the first enabled Menu.Item action, while the dropdown trigger opens a menu * with all available options. * * Use with Menu.Item, Menu.Section, and Separator components for content. */ export declare const SplitButton: { (props: SplitButtonProps): import("react/jsx-runtime").JSX.Element; displayName: string; };