import { Collection } from '@nuxt/content';
import { z } from 'zod';

declare const schema: z.ZodObject<{
    robots: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodBoolean]>>;
}, z.core.$strip>;
declare function asRobotsCollection<T>(collection: Collection<T>): Collection<T>;

export { asRobotsCollection, schema };
