import { BaseBlockDto } from './base-block.dto.js'; import type { NonFunctionProperties } from './base.dto.js'; export declare class BlockDto extends BaseBlockDto { static fromPlain: (plainObject: NonFunctionProperties) => BlockDto; static fromPlainArray: (plainObjects: NonFunctionProperties[]) => BlockDto[]; props?: string; extraProps?: string; children?: string; output?: string; } //# sourceMappingURL=block.dto.d.ts.map