import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { PaddingMode } from "../../ui.js"; import { ChipStatusAtm } from "../atoms/chipStatusAtm.js"; import { AttentionIconMessageMlc } from "../molecules/attentionIconMessageMlc.js"; import { SmallEmojiPanelMlc } from "../molecules/smallEmojiPanelMlc.js"; import { SmallEmojiPanelPlaneMlc } from "../molecules/smallEmojiPanelPlaneMlc.js"; import { TableHeadingWithTextMlc } from "../molecules/tableHeadingWithTextMlc.js"; import { TableItemHorizontalMlc } from "../molecules/tableItemHorizontalMlc.js"; import { TableItemPrimaryMlc } from "../molecules/tableItemPrimaryMlc.js"; import { TableItemVerticalMlc } from "../molecules/tableItemVerticalMlc.js"; import { TableMainHeadingMlc } from "../molecules/tableMainHeadingMlc.js"; import { TableSecondaryHeadingMlc } from "../molecules/tableSecondaryHeadingMlc.js"; export declare const protobufPackage = "ua.gov.diia.types.ds.organisms"; /** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/2211348523/tableBlockOrgV2 */ export interface TableBlockOrgV2 { componentId: string; paddingMode?: PaddingMode | undefined; chipStatusAtm?: ChipStatusAtm | undefined; tableMainHeadingMlc?: TableMainHeadingMlc | undefined; tableSecondaryHeadingMlc?: TableSecondaryHeadingMlc | undefined; items: TableBlockOrgV2Item[]; attentionIconMessageMlc?: AttentionIconMessageMlc | undefined; } export interface TableBlockOrgV2Item { smallEmojiPanelMlc?: SmallEmojiPanelMlc | undefined; smallEmojiPanelPlaneMlc?: SmallEmojiPanelPlaneMlc | undefined; tableItemPrimaryMlc?: TableItemPrimaryMlc | undefined; tableItemHorizontalMlc?: TableItemHorizontalMlc | undefined; tableItemVerticalMlc?: TableItemVerticalMlc | undefined; tableHeadingWithTextMlc?: TableHeadingWithTextMlc | undefined; } export declare const TableBlockOrgV2: MessageFns; export declare const TableBlockOrgV2Item: 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 {};