/// <reference types="react" />
export interface ISegmentProps {
    id: string;
    force?: boolean;
}
export declare function Segment({ id, force }: ISegmentProps): JSX.Element;
