import type { SchemaOf } from '../helpers'; import { Joi } from '../helpers'; export interface IOrganisationAddress { addressLine1: string; addressLine2?: string; state?: string; postalCode: string; country: string; } export declare const organisationAddressSchemaMap: SchemaOf; export declare const organisationAddressSchema: Joi.ObjectSchema; export interface IOrganisation { contactEmail: string; contactName: string; contactNumber?: string; organisationId: string; organisationName: string; logoUrl?: string; abn?: string; address?: IOrganisationAddress; security?: { contactName: string; contactNumber: string; }; notes?: string; isMultiTenant?: boolean; }