export type AlignmentValues = "start" | "center" | "end" | "nearest";
export type AlignmentOptions = {
    block: AlignmentValues;
    inline: AlignmentValues;
};
