import type { AnySchema } from '../../../schema/any/index.js';
import type { FormatterReturn, FormatterYield } from './formatter.js';
import type { FormatAttrValueOptions } from './options.js';
export declare function anySchemaFormatter(schema: AnySchema, rawValue: unknown, options?: FormatAttrValueOptions<AnySchema>): Generator<FormatterYield<AnySchema, FormatAttrValueOptions<AnySchema>>, FormatterReturn<AnySchema, FormatAttrValueOptions<AnySchema>>>;
