import { Courriel } from '../courriel';
import { Model } from '../model';
import { Url } from '../url';
export type Contact = Model<'Contact', {
    telephone?: string;
    courriels?: Courriel[];
    site_web?: Url[];
}>;
export type ContactToValidate = Omit<Contact, 'isContact'>;
export declare const isValidTelephone: (telephone: string) => boolean;
export declare const Contact: (contact: ContactToValidate) => Contact;
//# sourceMappingURL=contact.d.ts.map