export declare const ERROR: {
    INVALID_PARAM: {
        code: string;
        message: string;
    };
    SYS_ERR: {
        code: string;
        message: string;
    };
    STORAGE_REQUEST_FAIL: {
        code: string;
        message: string;
    };
    STORAGE_FILE_NONEXIST: {
        code: string;
        message: string;
    };
    TCB_CLS_UNOPEN: {
        code: string;
        message: string;
    };
    INVALID_CONTEXT: {
        code: string;
        message: string;
    };
};
