declare global { interface String { center(width: number, fillChar?: string): string; } } declare const center: (str: string, width: number, fillChar?: string) => string; export { center };