import _m0 from "protobufjs/minimal"; import { IError, QueryFilterRequest, RemoveReply } from "../../core/common"; export declare const protobufPackage = ""; export interface GeoCityCreateReply { data: GeoCityEntity | undefined; error: IError | undefined; } export interface GeoCityReply { data: GeoCityEntity | undefined; error: IError | undefined; } export interface GeoCityQueryReply { items: GeoCityEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface GeoCityEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag( yaml:"name" ) */ name?: string | undefined; /** One 2 one to external entity */ provinceId?: string | undefined; /** @tag(gorm:"foreignKey:ProvinceId;references:UniqueId" json:"province" yaml:"province") */ province: GeoProvinceEntity | undefined; /** One 2 one to external entity */ stateId?: string | undefined; /** @tag(gorm:"foreignKey:StateId;references:UniqueId" json:"state" yaml:"state") */ state: GeoStateEntity | undefined; /** One 2 one to external entity */ countryId?: string | undefined; /** @tag(gorm:"foreignKey:CountryId;references:UniqueId" json:"country" yaml:"country") */ country: GeoCountryEntity | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } export interface GeoCountryCreateReply { data: GeoCountryEntity | undefined; error: IError | undefined; } export interface GeoCountryReply { data: GeoCountryEntity | undefined; error: IError | undefined; } export interface GeoCountryQueryReply { items: GeoCountryEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface GeoCountryEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag(gorm:"foreignKey:LinkerId;references:UniqueId" json:"translations") */ translations: GeoCountryEntityPolyglot[]; /** @tag( yaml:"status" ) */ status?: string | undefined; /** @tag( yaml:"flag" ) */ flag?: string | undefined; /** @tag(translate:"true" yaml:"commonName" ) */ commonName?: string | undefined; /** @tag(translate:"true" yaml:"officialName" ) */ officialName?: string | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } /** Because it has translation field, we need a translation table for this */ export interface GeoCountryEntityPolyglot { /** @tag(gorm:"uniqueId;not null;size:100;" json:"linkerId" yaml:"linkerId") */ linkerId: string; /** @tag(gorm:"uniqueId;not null;size:100;" json:"languageId" yaml:"languageId") */ languageId: string; /** @tag(yaml:"commonName" json:"commonName"); */ commonName: string; /** @tag(yaml:"officialName" json:"officialName"); */ officialName: string; } export interface GeoProvinceCreateReply { data: GeoProvinceEntity | undefined; error: IError | undefined; } export interface GeoProvinceReply { data: GeoProvinceEntity | undefined; error: IError | undefined; } export interface GeoProvinceQueryReply { items: GeoProvinceEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface GeoProvinceEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag(gorm:"foreignKey:LinkerId;references:UniqueId" json:"translations") */ translations: GeoProvinceEntityPolyglot[]; /** @tag(translate:"true" yaml:"name" ) */ name?: string | undefined; /** One 2 one to external entity */ countryId?: string | undefined; /** @tag(gorm:"foreignKey:CountryId;references:UniqueId" json:"country" yaml:"country") */ country: GeoCountryEntity | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } /** Because it has translation field, we need a translation table for this */ export interface GeoProvinceEntityPolyglot { /** @tag(gorm:"uniqueId;not null;size:100;" json:"linkerId" yaml:"linkerId") */ linkerId: string; /** @tag(gorm:"uniqueId;not null;size:100;" json:"languageId" yaml:"languageId") */ languageId: string; /** @tag(yaml:"name" json:"name"); */ name: string; } export interface GeoStateCreateReply { data: GeoStateEntity | undefined; error: IError | undefined; } export interface GeoStateReply { data: GeoStateEntity | undefined; error: IError | undefined; } export interface GeoStateQueryReply { items: GeoStateEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface GeoStateEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag(gorm:"foreignKey:LinkerId;references:UniqueId" json:"translations") */ translations: GeoStateEntityPolyglot[]; /** @tag(translate:"true" yaml:"name" ) */ name?: string | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } /** Because it has translation field, we need a translation table for this */ export interface GeoStateEntityPolyglot { /** @tag(gorm:"uniqueId;not null;size:100;" json:"linkerId" yaml:"linkerId") */ linkerId: string; /** @tag(gorm:"uniqueId;not null;size:100;" json:"languageId" yaml:"languageId") */ languageId: string; /** @tag(yaml:"name" json:"name"); */ name: string; } export interface LocationDataCreateReply { data: LocationDataEntity | undefined; error: IError | undefined; } export interface LocationDataReply { data: LocationDataEntity | undefined; error: IError | undefined; } export interface LocationDataQueryReply { items: LocationDataEntity[]; totalItems: number; itemsPerPage: number; startIndex: number; error: IError | undefined; } export interface LocationDataEntity { /** @tag(yaml:"visibility") */ visibility?: string | undefined; /** @tag(yaml:"workspaceId") */ workspaceId?: string | undefined; /** @tag(yaml:"linkerId") */ linkerId?: string | undefined; /** @tag(yaml:"parentId") */ parentId?: string | undefined; /** @tag(gorm:"primarykey;uniqueId;unique;not null;size:100;" yaml:"uniqueId") */ uniqueId: string; /** @tag(yaml:"userId") */ userId?: string | undefined; /** @tag( yaml:"lat" ) */ lat: number; /** @tag( yaml:"lng" ) */ lng: number; /** @tag( yaml:"physicalAddress" ) */ physicalAddress?: string | undefined; /** @tag(gorm:"type:int;name:rank") */ rank: number; /** @tag(gorm:"autoUpdateTime:nano") */ updated: number; /** @tag(gorm:"autoUpdateTime:nano") */ created: number; /** @tag(sql:"-") */ createdFormatted: string; /** @tag(sql:"-") */ updatedFormatted: string; } export declare const GeoCityCreateReply: { encode(message: GeoCityCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCityCreateReply; fromJSON(object: any): GeoCityCreateReply; toJSON(message: GeoCityCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; stateId?: string | undefined; state?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; }; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_9 in Exclude]: never; })[] & { [K_10 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; httpCode?: number; } & { [K_15 in Exclude]: never; }; } & { [K_16 in Exclude]: never; }>(base?: I): GeoCityCreateReply; fromPartial]: never; })[] & { [K_18 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_19 in Exclude]: never; })[] & { [K_20 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_22 in Exclude]: never; }; stateId?: string | undefined; state?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_23 in Exclude]: never; })[] & { [K_24 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_25 in Exclude]: never; }; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_26 in Exclude]: never; })[] & { [K_27 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_28 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; httpCode?: number; } & { [K_32 in Exclude]: never; }; } & { [K_33 in Exclude]: never; }>(object: I_1): GeoCityCreateReply; }; export declare const GeoCityReply: { encode(message: GeoCityReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCityReply; fromJSON(object: any): GeoCityReply; toJSON(message: GeoCityReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; stateId?: string | undefined; state?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; }; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_9 in Exclude]: never; })[] & { [K_10 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; httpCode?: number; } & { [K_15 in Exclude]: never; }; } & { [K_16 in Exclude]: never; }>(base?: I): GeoCityReply; fromPartial]: never; })[] & { [K_18 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_19 in Exclude]: never; })[] & { [K_20 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_22 in Exclude]: never; }; stateId?: string | undefined; state?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_23 in Exclude]: never; })[] & { [K_24 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_25 in Exclude]: never; }; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_26 in Exclude]: never; })[] & { [K_27 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_28 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; httpCode?: number; } & { [K_32 in Exclude]: never; }; } & { [K_33 in Exclude]: never; }>(object: I_1): GeoCityReply; }; export declare const GeoCityQueryReply: { encode(message: GeoCityQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCityQueryReply; fromJSON(object: any): GeoCityQueryReply; toJSON(message: GeoCityQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; stateId?: string | undefined; state?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; }; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_9 in Exclude]: never; })[] & { [K_10 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_14 in Exclude]: never; })[] & { [K_15 in Exclude]: never; }; httpCode?: number; } & { [K_16 in Exclude]: never; }; } & { [K_17 in Exclude]: never; }>(base?: I): GeoCityQueryReply; fromPartial]: never; })[] & { [K_19 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_20 in Exclude]: never; })[] & { [K_21 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_22 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_23 in Exclude]: never; }; stateId?: string | undefined; state?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_24 in Exclude]: never; })[] & { [K_25 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_26 in Exclude]: never; }; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_27 in Exclude]: never; })[] & { [K_28 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_29 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_30 in Exclude]: never; })[] & { [K_31 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_32 in Exclude]: never; })[] & { [K_33 in Exclude]: never; }; httpCode?: number; } & { [K_34 in Exclude]: never; }; } & { [K_35 in Exclude]: never; }>(object: I_1): GeoCityQueryReply; }; export declare const GeoCityEntity: { encode(message: GeoCityEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCityEntity; fromJSON(object: any): GeoCityEntity; toJSON(message: GeoCityEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; stateId?: string | undefined; state?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_8 in Exclude]: never; }; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_9 in Exclude]: never; })[] & { [K_10 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_12 in Exclude]: never; }>(base?: I): GeoCityEntity; fromPartial]: never; })[] & { [K_14 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_15 in Exclude]: never; })[] & { [K_16 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_17 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_18 in Exclude]: never; }; stateId?: string | undefined; state?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[]; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; name?: string; }[] & ({ linkerId?: string; languageId?: string; name?: string; } & { linkerId?: string; languageId?: string; name?: string; } & { [K_19 in Exclude]: never; })[] & { [K_20 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_21 in Exclude]: never; }; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_22 in Exclude]: never; })[] & { [K_23 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_24 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_25 in Exclude]: never; }>(object: I_1): GeoCityEntity; }; export declare const GeoCountryCreateReply: { encode(message: GeoCountryCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCountryCreateReply; fromJSON(object: any): GeoCountryCreateReply; toJSON(message: GeoCountryCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; httpCode?: number; } & { [K_5 in Exclude]: never; }; } & { [K_6 in Exclude]: never; }>(base?: I): GeoCountryCreateReply; fromPartial]: never; })[] & { [K_8 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(object: I_1): GeoCountryCreateReply; }; export declare const GeoCountryReply: { encode(message: GeoCountryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCountryReply; fromJSON(object: any): GeoCountryReply; toJSON(message: GeoCountryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; httpCode?: number; } & { [K_5 in Exclude]: never; }; } & { [K_6 in Exclude]: never; }>(base?: I): GeoCountryReply; fromPartial]: never; })[] & { [K_8 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(object: I_1): GeoCountryReply; }; export declare const GeoCountryQueryReply: { encode(message: GeoCountryQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCountryQueryReply; fromJSON(object: any): GeoCountryQueryReply; toJSON(message: GeoCountryQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_4 in Exclude]: never; })[] & { [K_5 in Exclude]: never; }; httpCode?: number; } & { [K_6 in Exclude]: never; }; } & { [K_7 in Exclude]: never; }>(base?: I): GeoCountryQueryReply; fromPartial]: never; })[] & { [K_9 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; httpCode?: number; } & { [K_14 in Exclude]: never; }; } & { [K_15 in Exclude]: never; }>(object: I_1): GeoCountryQueryReply; }; export declare const GeoCountryEntity: { encode(message: GeoCountryEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCountryEntity; fromJSON(object: any): GeoCountryEntity; toJSON(message: GeoCountryEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }>(base?: I): GeoCountryEntity; fromPartial]: never; })[] & { [K_4 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }>(object: I_1): GeoCountryEntity; }; export declare const GeoCountryEntityPolyglot: { encode(message: GeoCountryEntityPolyglot, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoCountryEntityPolyglot; fromJSON(object: any): GeoCountryEntityPolyglot; toJSON(message: GeoCountryEntityPolyglot): unknown; create]: never; }>(base?: I): GeoCountryEntityPolyglot; fromPartial]: never; }>(object: I_1): GeoCountryEntityPolyglot; }; export declare const GeoProvinceCreateReply: { encode(message: GeoProvinceCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoProvinceCreateReply; fromJSON(object: any): GeoProvinceCreateReply; toJSON(message: GeoProvinceCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; httpCode?: number; } & { [K_8 in Exclude]: never; }; } & { [K_9 in Exclude]: never; }>(base?: I): GeoProvinceCreateReply; fromPartial]: never; })[] & { [K_11 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_14 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_15 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_16 in Exclude]: never; })[] & { [K_17 in Exclude]: never; }; httpCode?: number; } & { [K_18 in Exclude]: never; }; } & { [K_19 in Exclude]: never; }>(object: I_1): GeoProvinceCreateReply; }; export declare const GeoProvinceReply: { encode(message: GeoProvinceReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoProvinceReply; fromJSON(object: any): GeoProvinceReply; toJSON(message: GeoProvinceReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; httpCode?: number; } & { [K_8 in Exclude]: never; }; } & { [K_9 in Exclude]: never; }>(base?: I): GeoProvinceReply; fromPartial]: never; })[] & { [K_11 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_14 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_15 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_16 in Exclude]: never; })[] & { [K_17 in Exclude]: never; }; httpCode?: number; } & { [K_18 in Exclude]: never; }; } & { [K_19 in Exclude]: never; }>(object: I_1): GeoProvinceReply; }; export declare const GeoProvinceQueryReply: { encode(message: GeoProvinceQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoProvinceQueryReply; fromJSON(object: any): GeoProvinceQueryReply; toJSON(message: GeoProvinceQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; })[] & { [K_6 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_7 in Exclude]: never; })[] & { [K_8 in Exclude]: never; }; httpCode?: number; } & { [K_9 in Exclude]: never; }; } & { [K_10 in Exclude]: never; }>(base?: I): GeoProvinceQueryReply; fromPartial]: never; })[] & { [K_12 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_13 in Exclude]: never; })[] & { [K_14 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_15 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_16 in Exclude]: never; })[] & { [K_17 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_18 in Exclude]: never; })[] & { [K_19 in Exclude]: never; }; httpCode?: number; } & { [K_20 in Exclude]: never; }; } & { [K_21 in Exclude]: never; }>(object: I_1): GeoProvinceQueryReply; }; export declare const GeoProvinceEntity: { encode(message: GeoProvinceEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoProvinceEntity; fromJSON(object: any): GeoProvinceEntity; toJSON(message: GeoProvinceEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_4 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }>(base?: I): GeoProvinceEntity; fromPartial]: never; })[] & { [K_7 in Exclude]: never; }; name?: string | undefined; countryId?: string | undefined; country?: { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[]; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { visibility?: string | undefined; workspaceId?: string | undefined; linkerId?: string | undefined; parentId?: string | undefined; uniqueId?: string; userId?: string | undefined; translations?: { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; }[] & ({ linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { linkerId?: string; languageId?: string; commonName?: string; officialName?: string; } & { [K_8 in Exclude]: never; })[] & { [K_9 in Exclude]: never; }; status?: string | undefined; flag?: string | undefined; commonName?: string | undefined; officialName?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; }; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_11 in Exclude]: never; }>(object: I_1): GeoProvinceEntity; }; export declare const GeoProvinceEntityPolyglot: { encode(message: GeoProvinceEntityPolyglot, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoProvinceEntityPolyglot; fromJSON(object: any): GeoProvinceEntityPolyglot; toJSON(message: GeoProvinceEntityPolyglot): unknown; create]: never; }>(base?: I): GeoProvinceEntityPolyglot; fromPartial]: never; }>(object: I_1): GeoProvinceEntityPolyglot; }; export declare const GeoStateCreateReply: { encode(message: GeoStateCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoStateCreateReply; fromJSON(object: any): GeoStateCreateReply; toJSON(message: GeoStateCreateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; httpCode?: number; } & { [K_5 in Exclude]: never; }; } & { [K_6 in Exclude]: never; }>(base?: I): GeoStateCreateReply; fromPartial]: never; })[] & { [K_8 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(object: I_1): GeoStateCreateReply; }; export declare const GeoStateReply: { encode(message: GeoStateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoStateReply; fromJSON(object: any): GeoStateReply; toJSON(message: GeoStateReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_3 in Exclude]: never; })[] & { [K_4 in Exclude]: never; }; httpCode?: number; } & { [K_5 in Exclude]: never; }; } & { [K_6 in Exclude]: never; }>(base?: I): GeoStateReply; fromPartial]: never; })[] & { [K_8 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_9 in Exclude]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; httpCode?: number; } & { [K_12 in Exclude]: never; }; } & { [K_13 in Exclude]: never; }>(object: I_1): GeoStateReply; }; export declare const GeoStateQueryReply: { encode(message: GeoStateQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoStateQueryReply; fromJSON(object: any): GeoStateQueryReply; toJSON(message: GeoStateQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_4 in Exclude]: never; })[] & { [K_5 in Exclude]: never; }; httpCode?: number; } & { [K_6 in Exclude]: never; }; } & { [K_7 in Exclude]: never; }>(base?: I): GeoStateQueryReply; fromPartial]: never; })[] & { [K_9 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_10 in Exclude]: never; })[] & { [K_11 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_12 in Exclude]: never; })[] & { [K_13 in Exclude]: never; }; httpCode?: number; } & { [K_14 in Exclude]: never; }; } & { [K_15 in Exclude]: never; }>(object: I_1): GeoStateQueryReply; }; export declare const GeoStateEntity: { encode(message: GeoStateEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoStateEntity; fromJSON(object: any): GeoStateEntity; toJSON(message: GeoStateEntity): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_2 in Exclude]: never; }>(base?: I): GeoStateEntity; fromPartial]: never; })[] & { [K_4 in Exclude]: never; }; name?: string | undefined; rank?: number; updated?: number; created?: number; createdFormatted?: string; updatedFormatted?: string; } & { [K_5 in Exclude]: never; }>(object: I_1): GeoStateEntity; }; export declare const GeoStateEntityPolyglot: { encode(message: GeoStateEntityPolyglot, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): GeoStateEntityPolyglot; fromJSON(object: any): GeoStateEntityPolyglot; toJSON(message: GeoStateEntityPolyglot): unknown; create]: never; }>(base?: I): GeoStateEntityPolyglot; fromPartial]: never; }>(object: I_1): GeoStateEntityPolyglot; }; export declare const LocationDataCreateReply: { encode(message: LocationDataCreateReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LocationDataCreateReply; fromJSON(object: any): LocationDataCreateReply; toJSON(message: LocationDataCreateReply): unknown; create]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_1 in Exclude]: never; })[] & { [K_2 in Exclude]: never; }; httpCode?: number; } & { [K_3 in Exclude]: never; }; } & { [K_4 in Exclude]: never; }>(base?: I): LocationDataCreateReply; fromPartial]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; httpCode?: number; } & { [K_8 in Exclude]: never; }; } & { [K_9 in Exclude]: never; }>(object: I_1): LocationDataCreateReply; }; export declare const LocationDataReply: { encode(message: LocationDataReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LocationDataReply; fromJSON(object: any): LocationDataReply; toJSON(message: LocationDataReply): unknown; create]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_1 in Exclude]: never; })[] & { [K_2 in Exclude]: never; }; httpCode?: number; } & { [K_3 in Exclude]: never; }; } & { [K_4 in Exclude]: never; }>(base?: I): LocationDataReply; fromPartial]: never; }; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_6 in Exclude]: never; })[] & { [K_7 in Exclude]: never; }; httpCode?: number; } & { [K_8 in Exclude]: never; }; } & { [K_9 in Exclude]: never; }>(object: I_1): LocationDataReply; }; export declare const LocationDataQueryReply: { encode(message: LocationDataQueryReply, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LocationDataQueryReply; fromJSON(object: any): LocationDataQueryReply; toJSON(message: LocationDataQueryReply): unknown; create]: never; })[] & { [K_1 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_2 in Exclude]: never; })[] & { [K_3 in Exclude]: never; }; httpCode?: number; } & { [K_4 in Exclude]: never; }; } & { [K_5 in Exclude]: never; }>(base?: I): LocationDataQueryReply; fromPartial]: never; })[] & { [K_7 in Exclude]: never; }; totalItems?: number; itemsPerPage?: number; startIndex?: number; error?: { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[]; httpCode?: number; } & { message?: string; messageTranslated?: string; errors?: { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; }[] & ({ location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { location?: string; message?: string; messageTranslated?: string; errorParam?: string; type?: string; } & { [K_8 in Exclude]: never; })[] & { [K_9 in Exclude]: never; }; httpCode?: number; } & { [K_10 in Exclude]: never; }; } & { [K_11 in Exclude]: never; }>(object: I_1): LocationDataQueryReply; }; export declare const LocationDataEntity: { encode(message: LocationDataEntity, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): LocationDataEntity; fromJSON(object: any): LocationDataEntity; toJSON(message: LocationDataEntity): unknown; create]: never; }>(base?: I): LocationDataEntity; fromPartial]: never; }>(object: I_1): LocationDataEntity; }; export interface GeoCitys { GeoCityActionCreate(request: GeoCityEntity): Promise; GeoCityActionUpdate(request: GeoCityEntity): Promise; GeoCityActionQuery(request: QueryFilterRequest): Promise; GeoCityActionGetOne(request: QueryFilterRequest): Promise; GeoCityActionRemove(request: QueryFilterRequest): Promise; } export declare class GeoCitysClientImpl implements GeoCitys { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); GeoCityActionCreate(request: GeoCityEntity): Promise; GeoCityActionUpdate(request: GeoCityEntity): Promise; GeoCityActionQuery(request: QueryFilterRequest): Promise; GeoCityActionGetOne(request: QueryFilterRequest): Promise; GeoCityActionRemove(request: QueryFilterRequest): Promise; } export interface GeoCountrys { GeoCountryActionCreate(request: GeoCountryEntity): Promise; GeoCountryActionUpdate(request: GeoCountryEntity): Promise; GeoCountryActionQuery(request: QueryFilterRequest): Promise; GeoCountryActionGetOne(request: QueryFilterRequest): Promise; GeoCountryActionRemove(request: QueryFilterRequest): Promise; } export declare class GeoCountrysClientImpl implements GeoCountrys { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); GeoCountryActionCreate(request: GeoCountryEntity): Promise; GeoCountryActionUpdate(request: GeoCountryEntity): Promise; GeoCountryActionQuery(request: QueryFilterRequest): Promise; GeoCountryActionGetOne(request: QueryFilterRequest): Promise; GeoCountryActionRemove(request: QueryFilterRequest): Promise; } export interface GeoProvinces { GeoProvinceActionCreate(request: GeoProvinceEntity): Promise; GeoProvinceActionUpdate(request: GeoProvinceEntity): Promise; GeoProvinceActionQuery(request: QueryFilterRequest): Promise; GeoProvinceActionGetOne(request: QueryFilterRequest): Promise; GeoProvinceActionRemove(request: QueryFilterRequest): Promise; } export declare class GeoProvincesClientImpl implements GeoProvinces { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); GeoProvinceActionCreate(request: GeoProvinceEntity): Promise; GeoProvinceActionUpdate(request: GeoProvinceEntity): Promise; GeoProvinceActionQuery(request: QueryFilterRequest): Promise; GeoProvinceActionGetOne(request: QueryFilterRequest): Promise; GeoProvinceActionRemove(request: QueryFilterRequest): Promise; } export interface GeoStates { GeoStateActionCreate(request: GeoStateEntity): Promise; GeoStateActionUpdate(request: GeoStateEntity): Promise; GeoStateActionQuery(request: QueryFilterRequest): Promise; GeoStateActionGetOne(request: QueryFilterRequest): Promise; GeoStateActionRemove(request: QueryFilterRequest): Promise; } export declare class GeoStatesClientImpl implements GeoStates { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); GeoStateActionCreate(request: GeoStateEntity): Promise; GeoStateActionUpdate(request: GeoStateEntity): Promise; GeoStateActionQuery(request: QueryFilterRequest): Promise; GeoStateActionGetOne(request: QueryFilterRequest): Promise; GeoStateActionRemove(request: QueryFilterRequest): Promise; } export interface LocationDatas { LocationDataActionCreate(request: LocationDataEntity): Promise; LocationDataActionUpdate(request: LocationDataEntity): Promise; LocationDataActionQuery(request: QueryFilterRequest): Promise; LocationDataActionGetOne(request: QueryFilterRequest): Promise; LocationDataActionRemove(request: QueryFilterRequest): Promise; } export declare class LocationDatasClientImpl implements LocationDatas { private readonly rpc; private readonly service; constructor(rpc: Rpc, opts?: { service?: string; }); LocationDataActionCreate(request: LocationDataEntity): Promise; LocationDataActionUpdate(request: LocationDataEntity): Promise; LocationDataActionQuery(request: QueryFilterRequest): Promise; LocationDataActionGetOne(request: QueryFilterRequest): Promise; LocationDataActionRemove(request: QueryFilterRequest): Promise; } interface Rpc { request(service: string, method: string, data: Uint8Array): Promise; } type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude>]: never; }; export {};