import * as React from 'react';

declare interface propTypes {
    value: string;
    name?: string;
}
export default class SegmentTitle extends React.Component<propTypes> {}
