import * as FastCheck from 'fast-check'; import type { AsyncState } from '../async.types'; export declare const asyncStateArbitrary: (payloadArbitrary: FastCheck.Arbitrary, failPayloadArbitrary: FastCheck.Arbitrary) => FastCheck.Arbitrary>; export declare const asyncActionCreatorTypeArbitrary: () => FastCheck.Arbitrary<'fail' | 'init' | 'load' | 'revert' | 'succeed'>; export declare const sourceArbitrary: () => FastCheck.Arbitrary;