type Proxy = { hostname: string; source: number; target: number; cert: string; key: string; }; export declare function isProxy(input: unknown): input is Proxy; export declare function parse(args?: string[]): Proxy | Record; export {};