import type { ClientField } from 'payload';
import React from 'react';
type FieldContextType = {
    field?: ClientField;
    path?: string;
    schemaPath?: string;
};
export declare const FieldContext: React.Context<FieldContextType>;
export declare const FieldProvider: ({ children, context, }: {
    children: React.ReactNode;
    context: {
        field?: ClientField;
        path: string;
        schemaPath: unknown;
    };
}) => React.JSX.Element;
export {};
