import { District } from './District';
import { Block } from './Block';
export declare class Village {
    id: string;
    districtId: string;
    district?: District;
    blockId?: string | null;
    block?: Block | null;
    name: string;
    status: string;
    isDeleted: boolean;
    createdAt: Date;
    updatedAt: Date;
}
//# sourceMappingURL=Village.d.ts.map