import { default as React } from 'react';
interface IProps {
    defaultValue: string;
    onChange: (value: string) => void;
}
declare const TextAlignSegmented: React.FC<IProps>;
export default TextAlignSegmented;
