/**
 * Returns the total guild count of a user.
 * @param guildArray - An array of guild objects.
 * @returns The total count of guilds.
 * @throws {TypeError} If the input is not an array of guild objects.
 */
declare const totalGuildCount: <G extends object>(guildArray: G[]) => number;
export { totalGuildCount };
//# sourceMappingURL=Guild.d.ts.map