PinCodesProposal: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): PinCodesProposal;
    encode(message: PinCodesProposal, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: PinCodesProposalAmino): PinCodesProposal;
    fromAminoMsg(object: PinCodesProposalAminoMsg): PinCodesProposal;
    fromPartial(object: {
        $typeUrl?: "/cosmwasm.wasm.v1.PinCodesProposal";
        codeIds?: bigint[];
        description?: string;
        title?: string;
    }): PinCodesProposal;
    fromProtoMsg(message: PinCodesProposalProtoMsg): PinCodesProposal;
    toAmino(message: PinCodesProposal): PinCodesProposalAmino;
    toAminoMsg(message: PinCodesProposal): PinCodesProposalAminoMsg;
    toProto(message: PinCodesProposal): Uint8Array;
    toProtoMsg(message: PinCodesProposal): PinCodesProposalProtoMsg;
}