import { IAction, CoreAction } from "./interfaces"; export declare class Collect extends CoreAction { name: string; private static _counter; private _paramMap; private _timeout; private _groupActions; private static toUnderscore(name); constructor(name?: string); readonly id: string; numDigits: number; finishOnKey: string; digitsOnly: boolean; timeout: number; actions: IAction[]; toCCML(): string; }