import type { PageInfo } from "./../../common/PageInfo.js";
import type { PlatformPayout } from "./../../platform/payout/PlatformPayout.js";
import type { PlatformPayoutStatusStats } from "./../../platform/PlatformPayoutStatusStats.js";
export type GetPlatformPayoutsResponse = {
    items: PlatformPayout[];
    page: PageInfo;
    counts: PlatformPayoutStatusStats;
};
