/// <reference types="react" />
import './segmented-button.scss';
export declare const SegmentedButton: import("react").ForwardRefExoticComponent<{
    activeIndex?: number | undefined;
    items?: {
        label: React.ReactNode;
        disabled?: boolean | undefined;
        /**
         * Optional, defaults to array index
         */
        key?: import("react").Key | undefined;
    }[] | undefined;
    onChange?(activeIndex: number): void;
    /**
     * Each step down in density removes 4px from the height
     */
    density?: 0 | -1 | -2 | -3 | undefined;
} & Omit<import("react").HTMLProps<HTMLElement>, "ref" | "onChange" | "items" | "activeIndex" | "density"> & import("react").RefAttributes<HTMLDivElement>>;
