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