export interface ErrorTypewriterOptions {
    title?: string;
    message?: string;
    code?: number;
    totalWidth?: number;
}
export declare function errorTypewriter(options?: ErrorTypewriterOptions): (error: any) => string;
