export declare const xmatTimeSeparator: string;
export declare const xmatDoubleO: string;
export declare class XmatTime {
    hours: string;
    minutes: string;
    constructor(hours?: string | number, minutes?: string | number);
    getFullTime(sep?: string): string;
    getHours(): number;
    getMinutes(): number;
    private _addLeadingZeroes;
}
