import * as zod from 'zod';
import { TypeOf, ZodRawShape } from 'zod';
import { Collection } from '@nuxt/content';

declare const schema: zod.ZodObject<{
    schemaOrg: zod.ZodOptional<zod.ZodUnion<[zod.ZodRecord<zod.ZodString, zod.ZodAny>, zod.ZodOptional<zod.ZodArray<zod.ZodRecord<zod.ZodString, zod.ZodAny>, "many">>]>>;
}, "strip", zod.ZodTypeAny, {
    schemaOrg?: Record<string, any> | Record<string, any>[] | undefined;
}, {
    schemaOrg?: Record<string, any> | Record<string, any>[] | undefined;
}>;
type SchemaOrgSchema = TypeOf<typeof schema>;
declare function asSchemaOrgCollection<T extends ZodRawShape>(collection: Collection<T>): Collection<T>;

export { type SchemaOrgSchema, asSchemaOrgCollection, schema };
