type CharWidthRule = {
    test: RegExp | ((char: string) => boolean);
    width: number;
    placeholder?: string;
};
type PaddingMap = Record<string, CharWidthRule>;
declare function alignText(strings: string[], paddingMap?: PaddingMap, placeholder?: string): string[];

export { alignText };
