export declare const SEGMENTED_CONTROL_SCALES: readonly ["sm", "md", "lg"];
export type SegmentedControlScale = typeof SEGMENTED_CONTROL_SCALES[number];
export type SegmentedControlProperties = {
    /**
     * Buttons scale
     */
    scale?: SegmentedControlScale;
    /**
     * Selected button value
     */
    value?: string;
};
