import type { PageInput } from "./../../common/PageInput.js";
import type { PlatformPayoutFilterInput } from "./../../platform/payout/PlatformPayoutFilterInput.js";
export type GetPlatformPayoutsBody = {
    isForTest?: boolean;
    page?: PageInput;
    filter?: PlatformPayoutFilterInput;
};
