import { TransactionInstruction, PublicKey } from "@solana/web3.js";
export interface UpdateSharesMetadataArgs {
    name: string;
    symbol: string;
    uri: string;
}
export interface UpdateSharesMetadataAccounts {
    adminAuthority: PublicKey;
    strategy: PublicKey;
    globalConfig: PublicKey;
    sharesMint: PublicKey;
    sharesMetadata: PublicKey;
    sharesMintAuthority: PublicKey;
    metadataProgram: PublicKey;
}
export declare const layout: any;
export declare function updateSharesMetadata(args: UpdateSharesMetadataArgs, accounts: UpdateSharesMetadataAccounts): TransactionInstruction;
