import type { StartConfigMConfigStepConfig, StartConfigStepConfig } from "../../core/types/ConfigTypes.js";
import type { INumberGeneratorStrategy } from "../../core/interfaces/INumberGeneratorStrategy.js";
export type PyramidalConfig = StartConfigMConfigStepConfig;
export declare class PyramidalGenerator implements INumberGeneratorStrategy<PyramidalConfig> {
    generate({ start, step, m }: PyramidalConfig): Generator<bigint>;
}
export declare class PyramidalSpecificGenerator implements INumberGeneratorStrategy<StartConfigStepConfig> {
    private m;
    private baseGenerator;
    constructor(m: bigint);
    generate({ start, step }: {
        start?: bigint | undefined;
        step?: bigint | undefined;
    }): Generator<bigint>;
}
//# sourceMappingURL=PyramidalGenerator.d.ts.map