import PoeNinja from "../../../../../AbstractClass/PoeNinja";
/**
 * Represents a module for handling fragments in the PoeNinja currency view.
 */
export declare class FragmentModule extends PoeNinja {
    protected league: string;
    protected typeName: string;
    /**
     * Creates an instance of FragmentModule.
     * @param league The league for which the module is created.
     * @param typeName The type name of the module.
     */
    constructor(league: string, typeName: string);
}
