import { ResidentRole } from '@prisma/client';
export declare class CreateResidentDto {
    lotId: string;
    role: ResidentRole;
    email: string;
    firstName?: string;
    lastName?: string;
    phone?: string;
    password?: string;
    isPrimary?: boolean;
}
