import * as isoly from "isoly"; import { Creatable as CCreatable } from "./Creatable"; export interface Browser extends CCreatable { acceptHeader?: string; userAgent?: string; ip?: string; ipCountry?: isoly.CountryCode.Alpha2; } export declare namespace Browser { function is(value: Browser | any): value is Browser; type Creatable = CCreatable; namespace Creatable { const is: typeof CCreatable.is; } }