/// interface IProps { /** @ignore */ className?: string; /** * Segment color. Defaults to theme primary color. */ color?: string; /** * Size of segment in degrees. */ angleBody: number; /** * OFfset of segment in degrees. */ angleOffset: number; } declare const Segment: import("styled-components").StyledComponent<(props: IProps) => JSX.Element, import("../../styles/Theme").IThemeInterface, { skew: number; }, "skew">; export { Segment };