import { CurrencyEnumT } from "../../finance";
import { TeamFinanceProfile } from "../team-finance-profile";
import { UserFinanceProfile } from "../user-finance-profile";
export type FinanceProfileFilterT = {
    financeProfileId?: number;
};
export type FinanceProfileDTODataT = {
    id: number;
    currentBalance: number;
    outstandingBalance: number;
    payoutCurrency: CurrencyEnumT;
    userFinanceProfile: UserFinanceProfile | null;
    teamFinanceProfile: TeamFinanceProfile | null;
};
//# sourceMappingURL=index.d.ts.map