interface Props {
    timeout: number;
    ignoreArguments?: boolean;
}
export declare function throttle(timeout: number): MethodDecorator;
export declare function throttle(props: Props): MethodDecorator;
export {};
