import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { PaddingMode } from "../../ui.js"; import { SquareChipStatusAtm } from "../atoms/squareChipStatusAtm.js"; import { TextParameterAtm } from "../atoms/textParameterAtm.js"; import { AttentionIconMessageMlc } from "../molecules/attentionIconMessageMlc.js"; import { TableItemHorizontalMlc } from "../molecules/tableItemHorizontalMlc.js"; import { TableItemVerticalMlc } from "../molecules/tableItemVerticalMlc.js"; import { TextItemHorizontalMlc } from "../molecules/textItemHorizontalMlc.js"; import { TextItemVerticalMlc } from "../molecules/textItemVerticalMlc.js"; export declare const protobufPackage = "ua.gov.diia.types.ds.organisms"; /** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/2182578660/textBlockOrg */ export interface TextBlockOrg { componentId: string; squareChipStatusAtm?: SquareChipStatusAtm | undefined; title?: string | undefined; text?: string | undefined; items: TextBlockOrgItem[]; paddingMode?: PaddingMode | undefined; listItems: TextBlockOrgListItem[]; attentionIconMessageMlc?: AttentionIconMessageMlc | undefined; parameters: TextParameterAtm[]; } export interface TextBlockOrgItem { textItemHorizontalMlc?: TextItemHorizontalMlc | undefined; textItemVerticalMlc?: TextItemVerticalMlc | undefined; } export interface TextBlockOrgListItem { tableItemVerticalMlc?: TableItemVerticalMlc | undefined; tableItemHorizontalMlc?: TableItemHorizontalMlc | undefined; } export declare const TextBlockOrg: MessageFns; export declare const TextBlockOrgItem: MessageFns; export declare const TextBlockOrgListItem: 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 {};