import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export declare const protobufPackage = "ua.gov.diia.types.ds.molecules"; export declare const DotChipStatusMlcType: { readonly success: "success"; readonly pending: "pending"; readonly fail: "fail"; }; export type DotChipStatusMlcType = typeof DotChipStatusMlcType[keyof typeof DotChipStatusMlcType]; export declare namespace DotChipStatusMlcType { type success = typeof DotChipStatusMlcType.success; type pending = typeof DotChipStatusMlcType.pending; type fail = typeof DotChipStatusMlcType.fail; } export declare function dotChipStatusMlcTypeFromJSON(object: any): DotChipStatusMlcType; export declare function dotChipStatusMlcTypeToJSON(object: DotChipStatusMlcType): string; export declare function dotChipStatusMlcTypeToNumber(object: DotChipStatusMlcType): number; /** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/2747924542/dotChipStatusMlc */ export interface DotChipStatusMlc { componentId: string; label: string; isVisible: boolean; type: DotChipStatusMlcType; } export declare const DotChipStatusMlc: 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 {};