import { Func } from "./types";
export declare const ThrottlingUtil: {
    throttle: <R>(func: Func<R>, delay?: number) => Func<R | null>;
};
