/**. * Uri Support Class for working with Url's much easier by converting it to a usable object */ export declare class Uri { Segments: string[]; _raw: Component; rawUrl: string; constructor(url: string); set URL(value: string); get URL(): string; get Host(): string; get Scheme(): string; static EscapeDataString(dat: string): string; get Query(): string; } interface Component { scheme?: string; userinfo?: string; host?: string; port?: number; path: string; query?: string; fragment?: string; error?: string; } export {}; //# sourceMappingURL=Uri.d.ts.map