import { FC } from 'react';
import { CheckoutClient, CheckoutActionContextValue, CheckoutContextValue, CheckoutProviderProps } from './use-checkout.types';
export declare const CheckoutProvider: FC<CheckoutProviderProps>;
export declare function useCheckoutClient(): CheckoutClient;
export declare function useCheckoutState(): CheckoutContextValue;
export declare function useCheckoutActions(): CheckoutActionContextValue;
export declare function useIsCheckingOut(): boolean;
