export type TextAlignment = string;
/**
 * Possible text alignments.
 */
export type TextAlignments = TextAlignment;
export namespace TextAlignments {
    const Left: string;
    const Right: string;
    const Center: string;
}
//# sourceMappingURL=text_alignments.d.ts.map