import { Command } from '@rawcmd/core';
export interface HelpTypewriterOptions {
    totalWidth?: number;
}
export declare function helpTypewriter(options?: HelpTypewriterOptions): (command: Command<any>) => string;
