import type { ComponentPropsWithRef, FC, ReactNode } from 'react'; import { type TestableProps } from '../../utils/testId'; export interface SplitButtonProps extends ComponentPropsWithRef<'div'>, TestableProps { children: ReactNode; } export declare const SplitButton: FC;