/** * Провайдер контекста для группы сегментов и хук для доступа к контексту. */ export { SegmentProvider, useSegment } from '@salutejs/plasma-new-hope/styled-components'; /** * Компонент группы сегментов. */ export declare const SegmentGroup: import("react").FunctionComponent & import("@salutejs/plasma-new-hope/styled-components").SegmentGroupProps & import("react").RefAttributes>; /** * Компонент сегмента. */ export declare const SegmentItem: import("react").FunctionComponent & import("react").ButtonHTMLAttributes & { value: string; id?: string; label?: React.ReactNode; pilled?: boolean; customHandleSelect?: (e: import("react").MouseEvent) => void; size?: string; view?: string; contentLeft?: React.ReactNode; contentRight?: React.ReactNode | string; maxItemWidth?: React.CSSProperties["width"]; } & import("react").RefAttributes>;