import { Style } from "./types"; export declare function chalked(style?: Style | undefined): (...text: Array) => string; export declare const styledText: (style: Style | undefined, text: string) => string; export declare const widenRight: (text: string, width: number) => string; export declare const makeWidenRight: (width: number) => (text: string) => string;