import React, { ProviderProps } from 'react'; import { SomeZodObject, ZodEffects } from 'zod'; export type ZodSchemaContextProps = null | SomeZodObject; export type ZodSchemaContextValue = null | SomeZodObject | ZodEffects; export declare const ZodSchemaContext: React.Context; export interface ZodSchemaProviderProps extends ProviderProps { } export declare const ZodSchemaProvider: React.FC>; export declare const useZodSchemaContext: () => ZodSchemaContextProps; //# sourceMappingURL=SchemaContext.d.ts.map