|
import { AccountPayConfig } from '../../../../types/PayConfig';
|
|
import React from 'react';
|
|
export default function Account(props: {
|
|
config: AccountPayConfig;
|
|
update: (config: AccountPayConfig) => void;
|
|
t: (k: string) => string;
|
|
}): React.JSX.Element;
|