import type { MoonwellClient } from "../../client/createMoonwellClient.js";
import { Amount } from "../../common/index.js";
import { type GovernanceToken } from "../../environments/index.js";
export type GetGovernanceTokenInfoParameters = {
    governanceToken: GovernanceToken;
};
export type GetGovernanceTokenInfoReturnType = Promise<{
    totalSupply: Amount;
} | undefined>;
export declare function getGovernanceTokenInfo(_client: MoonwellClient, args: GetGovernanceTokenInfoParameters): GetGovernanceTokenInfoReturnType;
//# sourceMappingURL=getGovernanceTokenInfo.d.ts.map