export declare class KingdomError extends Error {
    code: string;
    constructor(message: string, code: string);
    toString(): string;
}
