import type { PromiseWithoutOptionAction, PromiseOptionalAction } from '../type';
export type Start = PromiseOptionalAction<number>;
export type Stop = PromiseWithoutOptionAction;
declare function useManualPullDownRefresh(): [Start, Stop];
export default useManualPullDownRefresh;