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