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