/**
 * Distribution strategy for zkp14/zkp15:
 * - 6 inputs: 3+3 distribution
 * - 5 inputs: 3+2 distribution (RISC0 setup)
 * - Lower counts: Keep all in zkp14 to minimize zkp15 complexity
 */
export declare function getDistribution(inputCount: number): {
    zkp14: number[];
    zkp15: number[];
};
