/**
 * Provides the methods to check if Intl APIs are supported.
 */
export declare class IntlAPI {
    static hasIntl(): boolean;
    static hasDateTimeFormat(): boolean;
    static hasTimezone(): boolean;
    static hasNumberFormat(): boolean;
    static hasCollator(): boolean;
    static hasRelativeTimeFormat(): boolean;
}
