import { RR0TimeMessages } from "../lang/index.js";
export declare class RR0TimeMessages_en implements RR0TimeMessages {
    duration: {
        days: (d: number) => string;
        hours: (d: number) => string;
        minutes: (mn: number) => string;
        seconds: (s: number) => string;
        lastSeparator: string;
        approximate: (txt: string) => string;
    };
    relative: {
        year: {
            before: string;
            after: string;
        };
        month: {
            before: string;
            after: string;
            later: string;
        };
        day: {
            before: string;
            after: string;
        };
        hour: {
            before: string;
            after: string;
        };
    };
    on: (approximate: boolean) => string;
    in: (approximate: boolean) => string;
    fromTo: (startReplacement: string, endReplacement: string) => string;
    starting: (approximate: boolean) => string;
}
