export declare type PositionAlignment = VerticalAlignment | HorizontalAlignment | CombinedAlignment; export declare type CombinedAlignment = `${VerticalAlignment} ${HorizontalAlignment}`; export declare type VerticalAlignment = 'top' | 'center' | 'bottom'; export declare type HorizontalAlignment = 'left' | 'center' | 'right'; //# sourceMappingURL=AlignmentTypes.d.ts.map