import { RepeatMatrixComposition } from '../../spec'; import { ValueAttribute, Concrete, ArrayAttribute, ObjectAttribute } from '../types'; import { Mark } from '../mark'; import { Composition, CompositionNode } from './index'; type RepeatMatrixSpec = Concrete; export interface RepeatMatrix extends Composition, Mark { data: ValueAttribute; transform: ArrayAttribute; encode: ObjectAttribute; scale: ObjectAttribute; legend: ObjectAttribute; axis: ObjectAttribute; } export declare class RepeatMatrix extends CompositionNode { constructor(); } export {};