import { Options, Settings, State } from "./interfaces";
export declare const DEFAULT_DATE_FORMAT = "YYYY-MM-DD";
export declare const NgxDatetimeRangePickerConstants: {
    DEFAULT: {
        OPTIONS: Options;
        SETTINGS: Settings;
        STATE: State;
        TIME_FORMAT: string;
        RANGES: {
            daily: {
                label: string;
                count: number;
            }[];
            weekly: {
                label: string;
                count: number;
            }[];
            monthly: {
                label: string;
                count: number;
            }[];
            quarterly: {
                label: string;
                count: number;
            }[];
            yearly: {
                label: string;
                count: number;
            }[];
        };
    };
    CONSTANT: {
        MONTHS_AVAILABLE: string[];
        TIMES_AVAILABLE: string[];
        MOMENT_CONVERSION_MAP: {
            daily: string;
            weekly: string;
            monthly: string;
            quarterly: string;
            yearly: string;
        };
        USA_MST_TZ_CODE: string;
        USA_TZ_CODE: string;
        EU_TZ_CODE: string;
        OFFSETS: {
            PST: {
                SO: number;
                WO: number;
            };
            CET: {
                SO: number;
                WO: number;
            };
        };
        TZ_NAMES: {
            MST: string;
            PST: string;
            CET: string;
        };
    };
};
