import type { ISchemaDTO } from '../../../../schema/actions/dto/index.js'; import type { AnyOfSchema } from '../../../../schema/anyOf/index.js'; type AnyOfSchemaDTO = Extract; /** * @debt feature "handle defaults, links & validators" */ export declare const fromAnyOfSchemaDTO: ({ elements, ...props }: AnyOfSchemaDTO) => AnyOfSchema; export {};