import { UserType } from 'src/user/schema/users.schema';
export declare enum StaffStatus {
    ACTIVE = "ACTIVE",
    INACTIVE = "INACTIVE",
    INVITED = "INVITED"
}
export declare class CreateStaffDto {
    name: string;
    phone_no: string;
    country_code?: string;
    email: string;
    user_type: UserType;
}
export declare class UpdateStaffDto {
    name?: string;
    phone_no?: string;
    country_code?: string;
    user_type?: UserType;
    is_active?: boolean;
}
export declare class StaffListDto {
    page: number;
    limit: number;
    search?: string;
    user_type?: UserType;
    status?: StaffStatus;
}
