import { AllowanceModel } from "../../../types/allowances/allowanceModel";
export interface CheckAllowanceResult {
    existAllowance: boolean;
    allowance: AllowanceModel | undefined;
}
