import { RR0Context } from "../../RR0Context.js";
export declare class TimeTextBuilder {
    readonly options: Intl.DateTimeFormatOptions;
    /**
     * @param options The default date format.to use.
     */
    constructor(options: Intl.DateTimeFormatOptions);
    /**
     * Build a textual representation of context's time, according to context's locale.
     */
    build(context: RR0Context, options?: Intl.DateTimeFormatOptions): string;
}
