import { RawAccount as SplTokenAccount, RawMint as SplMintAccount } from '@solana/spl-token'; import { MintInfo } from '@convergence-rfq/rfq'; import { Account } from '../../types'; /** @group Accounts */ export type MintAccount = Account; /** @group Account Helpers */ export declare const parseMintAccount: import("../../types").AccountParsingFunction; /** @group Account Helpers */ export declare const toMintAccount: import("../../types").AccountParsingAndAssertingFunction; /** @group Accounts */ export type MintInfoAccount = Account; /** @group Account Helpers */ export declare const parseMintInfoAccount: import("../../types").AccountParsingFunction; /** @group Account Helpers */ export declare const toMintInfoAccount: import("../../types").AccountParsingAndAssertingFunction; /** @group Accounts */ export type TokenAccount = Account; /** @group Account Helpers */ export declare const parseTokenAccount: import("../../types").AccountParsingFunction; /** @group Account Helpers */ export declare const toTokenAccount: import("../../types").AccountParsingAndAssertingFunction;