import { Info } from './Info'; import { Node } from './Node'; import type { ContactModel } from './types'; import type { Nullable, URLString } from '@fresha/api-tools-core'; export declare class Contact extends Node implements ContactModel { #private; constructor(parent: Info); get name(): Nullable; set name(value: Nullable); get url(): Nullable; set url(value: Nullable); get email(): Nullable; set email(value: Nullable); } //# sourceMappingURL=Contact.d.ts.map