declare class ResponseBase {
    get(header: string): string;
    get(header: "Set-Cookie"): string[];
}

export = ResponseBase;
