import type { ArrayPath } from '../../../schema/actions/utils/types.js'; import type { Schema } from '../../../schema/index.js'; import { SchemaAction } from '../../../schema/index.js'; import { SubSchema } from './subSchema.js'; export declare class Finder extends SchemaAction { static actionName: "finder"; search(path: string): SubSchema[]; } export declare const findSubSchemas: (schema: Schema, path: ArrayPath) => SubSchema[];