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