import { Account } from './accounts/Account'; import { AuditObject } from './AuditObject'; import { IntegrationPlatformType } from './IntegrationPlatformType'; import { PartnerExpertise } from './PartnerExpertise'; export declare class PartnerBase { constructor(partial?: Partial); location?: string; timezone?: string; website?: string; description?: string; platformSupport?: IntegrationPlatformType[]; expertise?: PartnerExpertise[]; isVisible: boolean; publicUrlSlug?: string; logoSrc?: string; } export declare class Partner extends PartnerBase implements AuditObject { static readonly MAX_LOGO_SIZE: number; constructor(partial?: Partial); id: string; isAccountReviewed?: boolean; createdAt: Date; updatedAt: Date; account: Account; setCreatedAt(): void; setUpdatedAt(): void; } export declare class ResizePhoto { width: number; height: number; s3key: string; }