import type { ItemSchema } from '../../../schema/index.js'; import { SchemaAction } from '../../../schema/index.js'; import type { ItemSchemaDTO } from './types.js'; export declare class SchemaDTO extends SchemaAction implements ItemSchemaDTO { static actionName: "dto"; type: ItemSchemaDTO['type']; attributes: ItemSchemaDTO['attributes']; constructor(schema: SCHEMA); toJSON(): ItemSchemaDTO; }