import { z } from 'zod'; /** Generates a default value */ export declare const nanoidSchema: z.ZodDefault>; /** UID format for objects */ export type Nanoid = z.infer; /** All of our Zod brands for entities, used to brand nanoidSchemas. */ export type ENTITY_BRANDS = { COLLECTION: 'collection'; COOKIE: 'cookie'; ENVIRONMENT: 'environment'; EXAMPLE: 'example'; OPERATION: 'operation'; SECURITY_SCHEME: 'securityScheme'; SERVER: 'server'; TAG: 'tag'; WORKSPACE: 'workspace'; }; //# sourceMappingURL=nanoid.d.ts.map