import React from 'react';
export declare function Divider({ dividerChar, dividerColor, padding, terminalWidth, textColor, textPadding, title, width, }: {
    readonly title?: string;
    readonly width?: number | 'full';
    readonly padding?: number;
    readonly textColor?: string;
    readonly textPadding?: number;
    readonly dividerChar?: string;
    readonly dividerColor?: string;
    readonly terminalWidth?: number;
}): React.ReactNode;
