import { ReadableMessageNames } from 'types';
import { MsgInstantiateContract2 } from '../../../../proto/cosmwasm/wasm/v1/tx_pb';
/**
 * Formats MsgInstantiateContract2 messages for display
 * @param message of type MsgInstantiateContract2
 * @returns object with MsgInstantiateContract2 fields
 */
export declare const msgInstantiateContract2: (message: MsgInstantiateContract2) => {
    typeName: ReadableMessageNames;
    sender: string;
    admin: string;
    codeId: number;
    label: string;
    msg: any;
    salt: any;
    fixMsg: boolean;
    fundsList: {
        denom: string;
        amount: number;
    }[];
};
