import { Base } from './base.js';
export declare const wrap: (input: string | Base) => string;
export declare const concat: (...inputs: Array<string | Base>) => string;
export declare const optional: (input: string | Base) => string;
export declare const repeat: (input: string | Base, count: number, max?: number) => string;
