/**
 * Represents a location where a rumour can be found in Gielinor.
 * Each location has a name and a corresponding wiki URL for more information. This class is used to provide players with details about where they can find specific rumours within the guild, helping them to navigate and complete their tasks more efficiently.
 */
export declare class RumourLocation {
    readonly name: string;
    readonly wikiUrl: string;
    constructor(name: string, wikiUrl: string);
}
//# sourceMappingURL=RumourLocation.d.ts.map