import type { ISchemaDTO } from '../../../../schema/actions/dto/index.js'; import type { PrimitiveSchema } from '../../../../schema/index.js'; type PrimitiveSchemaDTO = Extract; /** * @debt feature "handle defaults, links & validators" */ export declare const fromPrimitiveSchemaDTO: (dto: PrimitiveSchemaDTO) => PrimitiveSchema; export {};