import type { KeyContext } from '../core/KeyContext.js';
/**
 * A validator function which checks whether an input value is a
 * {@link KeyContext}. Doesn't stop the validator chain.
 *
 * @category XML
 */
export declare function validateKeyContext(value: unknown): [value: KeyContext, stop: boolean];
