import { IAttributeMap } from './AttributeMap'; import Iterator from './Iterator'; export interface IOp { insert?: string | object; delete?: number; retain?: number; attributes?: IAttributeMap; } export declare function iterator(ops: IOp[]): Iterator; export declare function length(op: IOp): number;