import { AutoEncoder } from '@simonbackx/simple-encoding'; import { Address } from './addresses/Address.js'; export declare class Company extends AutoEncoder { id: string; /** * Legal name of the organization (optional) */ name: string; VATNumber: string | null; companyNumber: string | null; address: Address | null; administrationEmail: string | null; getDiffValue(): string; equals(other: Company): boolean; } //# sourceMappingURL=Company.d.ts.map