import type { ValidatorsType } from "../util/validate.js";
export * from "./basics.js";
export * from "./people.js";
export * from "./util.js";
export declare const TEST_COLLECTIONS: {
    basics: import("../index.js").DataSchema<{
        str: string;
        num: number;
        group: "a" | "b" | "c";
        tags: import("../index.js").ImmutableArray<string>;
        odd: boolean;
        even: boolean;
        sub: {
            str: /*elided*/ any;
            num: /*elided*/ any;
            odd: /*elided*/ any;
            even: /*elided*/ any;
        };
    }>;
    people: import("../index.js").DataSchema<{
        name: {
            first: /*elided*/ any;
            last: /*elided*/ any;
        };
        birthday: string | null;
    }>;
};
export type TestCollections = ValidatorsType<typeof TEST_COLLECTIONS>;
