/** * Constants */ /** * Default API endpoint */ export declare const API_URL = "api.ideal-postcodes.co.uk"; /** * Use TLS by default. Set to `true` */ export declare const TLS = true; /** * Default API Version number. Defaults to "v1" */ export declare const VERSION = "v1"; /** * Default HTTP timeout in milliseconds. Defaults to 10s */ export declare const TIMEOUT = 10000; export declare const STRICT_AUTHORISATION = false; export { Client, Config } from "./client"; export { Agent, HttpRequest, HttpResponse } from "./agent"; import * as errors from "./error"; export { errors };