import type { IdProviderKey, VirtualHost as VirtualHostInterface } from '@enonic-types/lib-vhost'; export type { IdProviderKey, } from '@enonic-types/lib-vhost'; export declare class VirtualHost implements VirtualHostInterface { defaultIdProviderKey?: string; host: string; idProviderKeys?: IdProviderKey[]; name: string; source: string; target: string; constructor({ defaultIdProviderKey, host, idProviderKeys, name, source, target, }: Omit & { host?: string; }); }