import type { Address } from "@solana/kit"; import type { TokenInfo } from "./types.js"; /** * Creates a TokenInfo from a mint with decimals. * Generates a symbol from the first 4 characters of the mint address * and a name as "Token ". * @param mint - Mint object with address and decimals * @returns TokenInfo object */ export declare function createTokenInfoFromMint(mint: { address: Address; data: { decimals: TDecimals; }; }): TokenInfo; //# sourceMappingURL=create-token-info-from-mint.d.ts.map