export declare class TildaError extends Error {
    readonly status: string;
    constructor(status: string, message: string);
}
export declare function throwTildaError(response: Response): Promise<void>;
