import { ReactNode } from 'react';
import type { PaymentMethodStore } from '../payment-method-store';
import type { PaymentMethod } from '@automattic/composite-checkout';
type NounsInStore = 'customerName' | 'customerEmail';
type P24Store = PaymentMethodStore<NounsInStore>;
export declare function createP24PaymentMethodStore(): P24Store;
export declare function createP24Method({ store, submitButtonContent, }: {
    store: P24Store;
    submitButtonContent: ReactNode;
}): PaymentMethod;
export {};
//# sourceMappingURL=p24.d.ts.map