export declare type StaticCallback = (...args: any) => void; declare const useStaticCallback: (callback: StaticCallback) => (...args: any[]) => void; export default useStaticCallback;