import { PrimerCheckout } from '@primer-io/checkout-web';
import { Api } from '../services/api';
type primerInitPropsType = {
    primerClientToken: string;
    checkoutOptions: any;
    api: Api;
    orderId: string;
    onErrorCustom: (error: any, description: string) => void;
};
export declare const primerInitCheckout: ({ primerClientToken, checkoutOptions, api, orderId, onErrorCustom, }: primerInitPropsType) => Promise<PrimerCheckout>;
export {};
