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