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