///
import * as web3 from '@solana/web3.js';
import * as beet from '@convergence-rfq/beet';
import * as beetSolana from '@convergence-rfq/beet-solana';
import { MintType } from '../types/MintType';
export type MintInfoArgs = {
bump: number;
mintAddress: web3.PublicKey;
decimals: number;
mintType: MintType;
reserved: number[];
};
export declare const mintInfoDiscriminator: number[];
export declare class MintInfo implements MintInfoArgs {
readonly bump: number;
readonly mintAddress: web3.PublicKey;
readonly decimals: number;
readonly mintType: MintType;
readonly reserved: number[];
private constructor();
static fromArgs(args: MintInfoArgs): MintInfo;
static fromAccountInfo(accountInfo: web3.AccountInfo, offset?: number): [MintInfo, number];
static fromAccountAddress(connection: web3.Connection, address: web3.PublicKey): Promise;
static gpaBuilder(programId?: web3.PublicKey): beetSolana.GpaBuilder;
static deserialize(buf: Buffer, offset?: number): [MintInfo, number];
serialize(): [Buffer, number];
static byteSize(args: MintInfoArgs): number;
static getMinimumBalanceForRentExemption(args: MintInfoArgs, connection: web3.Connection, commitment?: web3.Commitment): Promise;
pretty(): {
bump: number;
mintAddress: string;
decimals: number;
mintType: "Stablecoin" | "AssetWithRisk";
reserved: number[];
};
}
export declare const mintInfoBeet: beet.FixableBeetStruct;