import { AnchorProvider } from "@coral-xyz/anchor";
import { type Keypair, type TransactionInstruction } from "@solana/web3.js";
/** Retrieves the provider used for interacting with the Solana blockchain.
 * @returns The initialized provider for interacting with the Solana blockchain.
*/
export declare const getProvider: () => AnchorProvider;
export type IxReturn = {
    ixs: TransactionInstruction[];
    signers: Keypair[];
};
/** Common args for all RWA instructions */
export type CommonArgs = {
    assetMint: string;
    payer: string;
    signer?: string;
    owner?: string;
    authority?: string;
};
//# sourceMappingURL=index.d.ts.map