export declare class DelayCall { private m_onExecute; private m_timeoutid; private m_delay; constructor(onExecute: (...args: A) => void, delay?: number); notice(...args: A): void; call(...args: A): void; clear(): void; }