import { Block } from './block'; import { Node } from './node'; export declare class Category implements Node { private _blocks; private _colour; private _name; private _custom; private _style; constructor(blocks: Block[], colour: string, name: string, custom: string, style?: string); blocks: Block[]; colour: string; name: string; custom: string; style: string; toXML(): string; }