import type { AnyOfSchema } from '../../../schema/index.js';
import type { ParseAttrValueOptions } from './options.js';
import type { ParserReturn, ParserYield } from './parser.js';
export declare function anyOfSchemaParser<OPTIONS extends ParseAttrValueOptions = {}>(schema: AnyOfSchema, inputValue: unknown, options?: OPTIONS): Generator<ParserYield<AnyOfSchema, OPTIONS>, ParserReturn<AnyOfSchema, OPTIONS>>;
