import { HestiaBranchData } from './branch.types'; export interface HestiaAgencyEmployeeData { agency_employee_id: number; agency_id: number; branch_id: number | null; branch_department_id: number | null; linked_branches: HestiaBranchData[]; email: string; name: string; first_name: string; last_name: string; job_title: string; team: string; accreditation: string; long_bio: string; short_bio: string; avatar: string; hero_asset: string; user_id: number; position: number; contactable_for_sales: string; contactable_for_lettings: string; direct_line: string; tel_mobile: string; facebook_uri: string; twitter_uri: string; linkedin_uri: string; instagram_uri: string; googleplus_uri: string; video_uri: string; whatsapp_uri: string; linktree_uri: string; youtube_uri: string; tiktok_uri: string; comments: string[]; deleted_at: string; disabled_at: string; linked_branch_departments: []; available_associated_properties: unknown; unavailable_associated_properties: unknown; agency_position: number | null; } export interface HestiaAgencyEmployeeResult { agency_employees: { elements: HestiaAgencyEmployeeData[]; has_next_page: boolean; total: number; }; } export interface AgencyEmployeeSearchParams { page?: number | string; pageSize?: number | string; search?: AgencyEmployeeHestiaSearch; } export interface AgencyEmployeeHestiaSearch { branchId?: number; agencyEmployeeIds?: string; nameToFilterBy?: string; } //# sourceMappingURL=agency-employee.types.d.ts.map