import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { PublicServiceStatus } from "./publicServiceStatus.js"; export declare const protobufPackage = "ua.gov.diia.types.ds.contextmenu"; export declare const PublicServiceContextMenuType: { readonly faqCategory: "faqCategory"; readonly tips: "tips"; readonly supportServiceScreen: "supportServiceScreen"; readonly assistantScreen: "assistantScreen"; readonly communityContacts: "communityContacts"; readonly pollArchive: "pollArchive"; readonly fundDetails: "fundDetails"; readonly createContent: "createContent"; readonly rating: "rating"; readonly downloadList: "downloadList"; readonly restoreRecords: "restoreRecords"; readonly onboarding: "onboarding"; }; export type PublicServiceContextMenuType = typeof PublicServiceContextMenuType[keyof typeof PublicServiceContextMenuType]; export declare namespace PublicServiceContextMenuType { type faqCategory = typeof PublicServiceContextMenuType.faqCategory; type tips = typeof PublicServiceContextMenuType.tips; type supportServiceScreen = typeof PublicServiceContextMenuType.supportServiceScreen; type assistantScreen = typeof PublicServiceContextMenuType.assistantScreen; type communityContacts = typeof PublicServiceContextMenuType.communityContacts; type pollArchive = typeof PublicServiceContextMenuType.pollArchive; type fundDetails = typeof PublicServiceContextMenuType.fundDetails; type createContent = typeof PublicServiceContextMenuType.createContent; type rating = typeof PublicServiceContextMenuType.rating; type downloadList = typeof PublicServiceContextMenuType.downloadList; type restoreRecords = typeof PublicServiceContextMenuType.restoreRecords; type onboarding = typeof PublicServiceContextMenuType.onboarding; } export declare function publicServiceContextMenuTypeFromJSON(object: any): PublicServiceContextMenuType; export declare function publicServiceContextMenuTypeToJSON(object: PublicServiceContextMenuType): string; export declare function publicServiceContextMenuTypeToNumber(object: PublicServiceContextMenuType): number; export interface PublicServiceContextMenu { type: PublicServiceContextMenuType; name: string; code?: string | undefined; } export interface PublicServiceSettings { id: string; categories: string[]; code: string; name: string; status: PublicServiceStatus; contextMenu: PublicServiceContextMenu[]; sortOrder: number; locales: { [key: string]: string; }; } export interface PublicServiceSettingsLocalesEntry { key: string; value: string; } export interface NavigationPanel { header?: string | undefined; contextMenu: PublicServiceContextMenu[]; } export declare const PublicServiceContextMenu: MessageFns; export declare const PublicServiceSettings: MessageFns; export declare const PublicServiceSettingsLocalesEntry: MessageFns; export declare const NavigationPanel: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export interface MessageFns { encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; fromJSON(object: any): T; toJSON(message: T): unknown; create(base?: DeepPartial): T; fromPartial(object: DeepPartial): T; } export {};