import { Style } from './style'; type AlignType = 'left' | 'center' | 'right' | 'justify'; export declare class Align extends Style { constructor(align: AlignType); static fromAttr(value: unknown): Align; } export {};