import { Connection, Keypair } from '@solana/web3.js'; import { AddressLabels } from '@metaplex-foundation/amman'; export declare const priceMint: import("@solana/web3.js").PublicKey; export declare function initVault(connection: Connection, args: { payer: Keypair; vaultAuthority: Keypair; allowFurtherShareCreation?: boolean; }, addressLabels: AddressLabels): Promise<{ externalPriceAccount: import("@solana/web3.js").PublicKey; fractionMint: import("@solana/web3.js").PublicKey; redeemTreasury: import("@solana/web3.js").PublicKey; fractionTreasury: import("@solana/web3.js").PublicKey; vault: import("@solana/web3.js").PublicKey; authority: import("@solana/web3.js").PublicKey; pricingLookupAddress: import("@solana/web3.js").PublicKey; }>;