export interface Account {
    acct?: string;
    amount?: string;
}
export default Account;
