declare type AgreementSubmittedType = { agreementId: string; }; declare type OmnipayProps = { color: string; env: 'dev' | 'prod'; publicKey: string; phoneNumber?: string; customerRef?: string; amount: number; lenderId?: string; feesId?: string; sublimitId?: string; onAgreementAccepted: ({ agreementId }: AgreementSubmittedType) => void; onClose?: () => void; }; export declare const PaylaterAgreement: ({ color, env, publicKey, phoneNumber, onAgreementAccepted, customerRef, amount, lenderId, feesId, sublimitId, onClose, }: OmnipayProps) => JSX.Element; export {}; //# sourceMappingURL=PaylaterAgreement.d.ts.map