export interface ContentsTypewriterOptions {
    paddingWidth?: number;
    totalWidth?: number;
}
export declare function contentsTypewriter(options?: ContentsTypewriterOptions): (lines: string[][]) => string;
