import type { ISchemaDTO } from '../../../../schema/actions/dto/index.js'; import type { SetSchema } from '../../../../schema/set/index.js'; type SetSchemaDTO = Extract; /** * @debt feature "handle defaults, links & validators" */ export declare const fromSetSchemaDTO: ({ keyDefault, putDefault, updateDefault, keyLink, putLink, updateLink, elements, ...props }: SetSchemaDTO) => SetSchema; export {};