import { Mino } from "../types";
export type BagType = "7-bag" | "14-bag" | "classic" | "pairs" | "total mayhem" | "7+1-bag" | "7+2-bag" | "7+x-bag";
export type RngInnerFunction = () => Mino[];
export type RngFunction = (seed: number) => RngInnerFunction;
export declare const rngMap: {
    [k in BagType]: RngFunction;
};
export * from "./bag7";
export * from "./bag14";
export * from "./classic";
export * from "./pairs";
export * from "./random";
export * from "./bag7-1";
export * from "./bag7-2";
export * from "./bag7-x";
//# sourceMappingURL=index.d.ts.map