/** @jsxImportSource @emotion/react */ import React from 'react'; import { Field } from '../core/accountLinkCore'; import StrivveCore from '../core/strivveCore'; import { MerchantSite } from '../types'; export interface AccountLinkFormProps { fields: Field[]; submit: React.FormEventHandler; change: (name: string, value: any) => void; disabled?: boolean; values?: { [key: string]: any; }; onCancel?: () => void; forgotLink?: string; core?: StrivveCore; site?: MerchantSite; } declare function AccountLinkForm({ fields, submit, change, disabled, values, onCancel, forgotLink, core, site, }: AccountLinkFormProps): import("@emotion/react/jsx-runtime").JSX.Element; export default AccountLinkForm;