import type { DrawVerticalLine } from './types/api';
declare type Separator = {
    readonly left: string;
    readonly right: string;
    readonly join: string;
};
export default function drawHorizontalContent(contents: string[], config: {
    separator: Separator;
    drawVerticalLine: DrawVerticalLine;
}): string;
export {};
