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