//#region src/hooks/useAsyncProcessQueue/index.d.ts type RequestFunction = (...args: any[]) => Promise; interface UseAsyncProcessQueueOptions { keepPreviousData?: boolean; } /** * @experimental 실험적인 훅으로 추후 변경될 수 있습니다. */ declare function useAsyncProcessQueue({ keepPreviousData }?: UseAsyncProcessQueueOptions): { data: T | null; error: E | null; isLoading: boolean; addToProcessQueue: (callbackFunc: RequestFunction) => Promise; }; //#endregion export { useAsyncProcessQueue }; //# sourceMappingURL=index.d.ts.map