blob: 459fa7ea9b13d026e20a4b9e09d152ac44599e4e [file] [log] [blame] [edit]
import type { Alignment } from './types/api';
/**
* Pads a string to the left and/or right to position the subject
* text in a desired alignment within a container.
*/
export declare const alignString: (subject: string, containerWidth: number, alignment: Alignment) => string;