import type { Item } from "../util/item.js";
import type { ValidatorType } from "../util/validate.js";
export declare const PERSON_SCHEMA: import("../schema/DataSchema.js").DataSchema<{
    name: {
        first: /*elided*/ any;
        last: /*elided*/ any;
    };
    birthday: string | null;
}>;
export type PersonData = ValidatorType<typeof PERSON_SCHEMA>;
export type PersonItem = Item<string, PersonData>;
export declare const person1: PersonItem;
export declare const person2: PersonItem;
export declare const person3: PersonItem;
export declare const person4: PersonItem;
export declare const person5: PersonItem;
export declare const people: ReadonlyArray<PersonItem>;
