export declare class Keyframe { value: T; time: number | 'start' | 'end'; easing?: string | undefined; constructor(value: T, time: number | 'start' | 'end', easing?: string | undefined); } export declare type ValueOrKeyframes = T | Array>;