import { Params, ParamsAmino } from "./photon"; import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "atomone.photon.v1"; /** GenesisState defines the x/photon module's genesis state. */ export interface GenesisState { params: Params | undefined; } export interface GenesisStateProtoMsg { typeUrl: "/atomone.photon.v1.GenesisState"; value: Uint8Array; } /** GenesisState defines the x/photon module's genesis state. */ export interface GenesisStateAmino { params: ParamsAmino | undefined; } export interface GenesisStateAminoMsg { type: "/atomone.photon.v1.GenesisState"; value: GenesisStateAmino; } export declare const GenesisState: { typeUrl: string; encode(message: GenesisState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): GenesisState; fromJSON(object: any): GenesisState; toJSON(message: GenesisState): unknown; fromPartial(object: Partial): GenesisState; fromAmino(object: GenesisStateAmino): GenesisState; toAmino(message: GenesisState): GenesisStateAmino; fromAminoMsg(object: GenesisStateAminoMsg): GenesisState; fromProtoMsg(message: GenesisStateProtoMsg): GenesisState; toProto(message: GenesisState): Uint8Array; toProtoMsg(message: GenesisState): GenesisStateProtoMsg; };