export declare function generateMockPerson(): {
    id: string;
    firstName: string;
    lastName: string;
    gender: "ชาย" | "หญิง";
    birthDate: string;
    age: number;
    religion: string;
    laserCode: string;
    issuedDate: string;
    expiredDate: string;
    englishName: string;
    province: string;
    district: string;
    subdistrict: string;
    postcode: string;
    address: string;
};
