export declare class UserPermissions { isActive: boolean; isEmployerStaff: boolean; isStaff: boolean; constructor(data?: UserPermissions | DjangoUserPermissions); get djangoModel(): { is_active: boolean; is_employer_staff: boolean; is_staff: boolean; }; } export declare function parseUserPermissions(data: DjangoUserPermissions | UserPermissions): UserPermissions; export interface DjangoUserPermissions { is_active?: boolean; is_employer_staff?: boolean; is_staff?: boolean; }