export interface HealthzServerOptions {
    path?: string;
    port?: number;
    address?: string;
}
export type checkFunction = () => void | Promise<void>;
export interface AddressInfo {
    port: number;
    address: string;
    family: string;
}
//# sourceMappingURL=types.d.ts.map