type AsyncState = 'idle' | 'loading' | 'error';
declare const useAsyncState: () => [AsyncState, () => void, () => void, () => void];
export default useAsyncState;
