declare class PayoutInput {
    entities: {
        id: string;
        userId: string;
    }[];
}
/**
 * Create payout for product owners
 */
declare const payout: import("@lomray/microservice-helpers/services/endpoint").IReturnWithMeta<never, PayoutInput, Record<string, any>, {
    isComplete: boolean;
}>;
export { payout as default };
