import React from "react"; export interface LiquidGlassSegment { id: string; label: string; icon?: React.ReactNode; disabled?: boolean; } export interface LiquidGlassSegmentedControlProps extends React.HTMLAttributes { segments: LiquidGlassSegment[]; value?: string; onValueChange?: (value: string) => void; density?: "compact" | "comfortable" | "spacious"; } export declare const LiquidGlassSegmentedControl: React.ForwardRefExoticComponent>; //# sourceMappingURL=LiquidGlassSegmentedControl.d.ts.map