import { AllowanceContactModel } from "../../types/allowances/allowanceContactModel";
import { SubAccountId } from "../../types/assets";
export interface SubAccountContactView {
    name: string;
    subAccountId: SubAccountId;
    allowance: AllowanceContactModel | undefined;
}
