import { Condition } from "./Condition"; import { GlideDuration } from "../types/GlideDuration"; export declare class ClothoTransform { avg(): ClothoTransform; constructor(); label(label?: string): ClothoTransform; limit(limit?: any): ClothoTransform; max(): ClothoTransform; min(): ClothoTransform; resample(aggregator?: string, period?: GlideDuration): ClothoTransform; where(condition?: Condition): ClothoTransform; }