import { AlignValue } from '../utils'; /** Copy of TextAlignProperty from csstype (works around TS error) */ export declare type TextAlignProperty = '-moz-initial' | 'inherit' | 'initial' | 'revert' | 'unset' | 'center' | 'end' | 'justify' | 'left' | 'match-parent' | 'right' | 'start'; export declare const translateAlignProp: (textAlignProp: AlignValue) => TextAlignProperty;