PageResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): PageResponse;
    encode(message: PageResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: PageResponseAmino): PageResponse;
    fromAminoMsg(object: PageResponseAminoMsg): PageResponse;
    fromPartial(object: {
        nextKey?: Uint8Array;
        total?: bigint;
    }): PageResponse;
    fromProtoMsg(message: PageResponseProtoMsg): PageResponse;
    toAmino(message: PageResponse): PageResponseAmino;
    toAminoMsg(message: PageResponse): PageResponseAminoMsg;
    toProto(message: PageResponse): Uint8Array;
    toProtoMsg(message: PageResponse): PageResponseProtoMsg;
}