export declare const base: {
    common: {
        confirm: string;
        cancel: string;
    };
    Calendar: {
        markItems: string[];
        renderYearAndMonth: (year: number, month: number) => string;
    };
    Cascader: {
        placeholder: string;
    };
    Dialog: {
        ok: string;
    };
    ErrorBlock: {
        default: {
            title: string;
            description: string;
        };
        busy: {
            title: string;
            description: string;
        };
        disconnected: {
            title: string;
            description: string;
        };
        empty: {
            title: string;
            description: string;
        };
    };
    ImageUploader: {
        uploading: string;
    };
    Mask: {
        name: string;
    };
    Modal: {
        ok: string;
    };
};
export declare type Locale = typeof base;
