import { ProgramAccount, TokenOwnerRecord, WalletSigner } from '@solana/spl-governance'; import { Connection, PublicKey, TransactionInstruction } from '@solana/web3.js'; import { VsrClient } from './voteStakeRegistryClient'; export declare const MANGO_MINT = "MangoCzJ36AjZyKwVj3VnYU4GTonjfVEnJmvvWaxLac"; export declare const MANGO_REALM_PK: PublicKey; export declare const MANGO_GOVERNANCE_PROGRAM: PublicKey; export declare const createProposal: (connection: Connection, wallet: WalletSigner, governance: PublicKey, tokenOwnerRecord: ProgramAccount, name: string, descriptionLink: string, proposalIndex: number, proposalInstructions: TransactionInstruction[], client: VsrClient, signOff: boolean) => Promise;