/**
 * Pad a string from both sides.
 */
export declare function pad(str: string, maxLen: number, fillString: string): string;
