import BaseItemModel from '../Abstract/BaseItemModel.js'; import BaseModel from '../Abstract/BaseModel.js'; declare class PersonaModel extends BaseModel { constructor(entities: any); } declare class PersonaFilterModel extends BaseModel { constructor(entities: any); getPagination: () => { page: number | null; pageLimit: number | null; limitstart: number | null; totalItems: number | null; totalPages: number | null; }; } declare class PersonaItemModel extends BaseItemModel { name: string; avatar: string; avatar_2: string; location: string; age_from: string; age_to: string; gender: string; channel: number; demographics_type: string; demographics_select: string; interests_type: string; interests_select: string; behaviors_type: string; behaviors_select: string; location_all_contries: string; constructor(entity: any); toObject: () => { [x: string]: string | number; }; toJSON: () => { created_date: null; modified_date: string; created_by: null; modified_by: null; }; static __transformItemToApiOfCreation: (data: any) => { [x: string]: any; }; static __transformItemToApiOfUpdation: (data: any) => { [x: string]: any; }; } export { PersonaFilterModel, PersonaItemModel, PersonaModel };