import { z as baseZ, ZodError, ZodString, ZodType } from 'zod'; import { extendZod } from './extension'; export * from './e164Phone'; export * from './localizedString'; export type RpcbaseZod = typeof baseZ & { e164Phone: (options?: import('./e164Phone').E164PhoneOptions) => ZodString; }; export declare const z: RpcbaseZod; export declare namespace z { type infer = import("zod").infer; type input = import("zod").input; type output = import("zod").output; type TypeOf = import("zod").TypeOf; type Infer = import("zod").Infer; } export { extendZod, ZodError, ZodType }; //# sourceMappingURL=index.d.ts.map