import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { AIchatOutgoingMessageMlc } from "../molecules/aIChatOutgoingMessageMlc.js"; import { TransparentInfoCardMlc } from "../molecules/transparentInfoCardMlc.js"; export declare const protobufPackage = "ua.gov.diia.types.ds.organisms"; export declare const AIchatOutgoingMessageOrgState: { readonly regular: "regular"; readonly sent: "sent"; readonly pending: "pending"; readonly failed: "failed"; }; export type AIchatOutgoingMessageOrgState = typeof AIchatOutgoingMessageOrgState[keyof typeof AIchatOutgoingMessageOrgState]; export declare namespace AIchatOutgoingMessageOrgState { type regular = typeof AIchatOutgoingMessageOrgState.regular; type sent = typeof AIchatOutgoingMessageOrgState.sent; type pending = typeof AIchatOutgoingMessageOrgState.pending; type failed = typeof AIchatOutgoingMessageOrgState.failed; } export declare function aIchatOutgoingMessageOrgStateFromJSON(object: any): AIchatOutgoingMessageOrgState; export declare function aIchatOutgoingMessageOrgStateToJSON(object: AIchatOutgoingMessageOrgState): string; export declare function aIchatOutgoingMessageOrgStateToNumber(object: AIchatOutgoingMessageOrgState): number; /** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/2698739713 */ export interface AIchatOutgoingMessageOrg { componentId: string; items: AIchatOutgoingMessageOrgItem[]; state: AIchatOutgoingMessageOrgState; message?: string | undefined; errorMessage?: string | undefined; } export interface AIchatOutgoingMessageOrgItem { AIchatOutgoingMessageMlc?: AIchatOutgoingMessageMlc | undefined; transparentInfoCardMlc?: TransparentInfoCardMlc | undefined; } export declare const AIchatOutgoingMessageOrg: MessageFns; export declare const AIchatOutgoingMessageOrgItem: 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 {};