import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export declare const protobufPackage = "ua.gov.diia.types.ds.molecules"; export declare const LegendGroupMlcType: { readonly common: "common"; readonly weekend: "weekend"; readonly holiday: "holiday"; readonly initial: "initial"; }; export type LegendGroupMlcType = typeof LegendGroupMlcType[keyof typeof LegendGroupMlcType]; export declare namespace LegendGroupMlcType { type common = typeof LegendGroupMlcType.common; type weekend = typeof LegendGroupMlcType.weekend; type holiday = typeof LegendGroupMlcType.holiday; type initial = typeof LegendGroupMlcType.initial; } export declare function legendGroupMlcTypeFromJSON(object: any): LegendGroupMlcType; export declare function legendGroupMlcTypeToJSON(object: LegendGroupMlcType): string; export declare function legendGroupMlcTypeToNumber(object: LegendGroupMlcType): number; /** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/2337734704/legendGroupMlc */ export interface LegendGroupMlc { componentId: string; label: string; isVisible: boolean; type: LegendGroupMlcType; } export declare const LegendGroupMlc: 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 {};