/** Task informations about an entreprise */
export interface EntrepriseNumberInformations {
    /** Address of the entreprise */
    address?: string;
    /** Entreprise's category code for directory services */
    ape?: string;
    /** Brand of the entreprise */
    brand?: string;
    /** Entreprise number */
    entrepriseNumber: string;
    /** Is this a valid entreprise number? */
    isValid: boolean;
    /** Name of the entreprise */
    name: string;
    /** Short version of the entreprise number (FR only) */
    siren?: string;
}
//# sourceMappingURL=EntrepriseNumberInformations.d.ts.map