import { Optional } from '@ephox/katamari'; export interface Gene { id: string; name: string; children: Gene[]; css: Record; attrs: Record; text?: string; parent: Optional; random?: number; } export declare const Gene: (id: string, name: string, children?: Gene[], css?: Record, attrs?: Record, text?: string) => Gene; //# sourceMappingURL=Gene.d.ts.map