import type { Field } from 'payload';
import React from 'react';
export declare const InstructionsContext: React.Context<{
    activeCollection?: string;
    field?: Field;
    instructions: Record<string, any>;
    isConfigAllowed: boolean;
    path?: string;
    schemaPath?: unknown;
    setActiveCollection?: (val: unknown) => void;
}>;
export declare const InstructionsProvider: React.FC;
