import { HttpStatusCodes } from '../Server'; import { Response } from './Response'; export declare class InformationalResponse extends Response { static create(statusCode: HttpStatusCodes, meta?: any): InformationalResponse; static continue(meta?: any): InformationalResponse; static switchingProtocols(meta?: any): InformationalResponse; static processing(meta?: any): InformationalResponse; }