import { Command } from '@rawcmd/core';
import { ContentsTypewriterOptions } from './contents';
export interface LinksTypewriterOptions extends ContentsTypewriterOptions {
    title?: string;
}
export declare function linksTypewriter(options?: LinksTypewriterOptions): (command: Command<any>) => string;
