import { State } from './state'; import * as cg from './types'; export declare type Mutation = (state: State) => A; export declare type AnimVector = cg.NumberQuad; export declare type AnimVectors = Map; export declare type AnimFadings = Map; export interface AnimPlan { anims: AnimVectors; fadings: AnimFadings; } export interface AnimCurrent { start: DOMHighResTimeStamp; frequency: cg.KHz; plan: AnimPlan; } export declare function anim(mutation: Mutation, state: State): A; export declare function render(mutation: Mutation, state: State): A;