import { KendoComponent } from '../_types/component';
export declare const SEGMENTED_CONTROL_BUTTON_CLASSNAME = "k-segmented-control-button";
declare const states: readonly ["selected", "hover", "focus", "disabled"];
export type KendoSegmentedControlButtonOptions = {};
export type KendoSegmentedControlButtonProps = KendoSegmentedControlButtonOptions & {
    icon?: string;
    text?: string;
    iconClassName?: string;
    children?: string;
};
export type KendoSegmentedControlButtonState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const SegmentedControlButton: KendoComponent<KendoSegmentedControlButtonProps & KendoSegmentedControlButtonState & Omit<React.HTMLAttributes<HTMLButtonElement>, 'children'>>;
export default SegmentedControlButton;
