import { Strategy } from './base.strategy';
import { Observable } from 'rxjs';
import { ThrottleOptions } from '../interfaces';
import { BaseCommand } from '../commands';
export declare class ThrottleStrategy extends Strategy<ThrottleOptions> {
    private static readonly DEFAULT_OPTIONS;
    constructor(options?: ThrottleOptions);
    process<T>(observable: Observable<T>, command: BaseCommand): Observable<T>;
}
