/** * Creates a string of spaces with the specified length * @param count - Number of spaces to create * @returns A string containing the specified number of spaces */ export declare const spaces: (count: number, character?: string) => string; /** * Centers text within a given width by adding spaces on both sides * @param text - The text to center * @param width - The total width to center within * @returns The centered text with padding spaces */ export declare const center: (text: string, width: number, paddingCharacter?: string) => string; /** * Left-aligns text within a given width by adding spaces to the right * @param text - The text to align * @param width - The total width to align within * @returns The left-aligned text with padding spaces */ export declare const left: (text: string, width: number) => string; /** * Right-aligns text within a given width by adding spaces to the left * @param text - The text to align * @param width - The total width to align within * @returns The right-aligned text with padding spaces */ export declare const right: (text: string, width: number) => string;