import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { PaddingMode } from "../../ui.js"; import { SpacerAtm } from "../atoms/spacerAtm.js"; import { AttentionIconMessageMlc } from "../molecules/attentionIconMessageMlc.js"; import { BtnIconPlainStrokeMlc } from "../molecules/btnIconPlainStrokeMlc.js"; import { PhotoUploadMlc } from "../molecules/photoUploadMlc.js"; import { TableMainHeadingMlc } from "../molecules/tableMainHeadingMlc.js"; import { TableAccordionOrg } from "./tableAccordionOrg.js"; import { TableBlockOrgV2 } from "./tableBlockOrgV2.js"; export declare const protobufPackage = "ua.gov.diia.types.ds.organisms"; /** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/2839937101/backgroundWhiteOrgV2 */ export interface BackgroundWhiteOrgV2 { componentId: string; paddingMode?: PaddingMode | undefined; items: BackgroundWhiteOrgV2Item[]; } export interface BackgroundWhiteOrgV2Item { tableMainHeadingMlc?: TableMainHeadingMlc | undefined; tableAccordionOrg?: TableAccordionOrg | undefined; attentionIconMessageMlc?: AttentionIconMessageMlc | undefined; tableBlockOrgV2?: TableBlockOrgV2 | undefined; btnIconPlainStrokeMlc?: BtnIconPlainStrokeMlc | undefined; spacerAtm?: SpacerAtm | undefined; photoUploadMlc?: PhotoUploadMlc | undefined; } export declare const BackgroundWhiteOrgV2: MessageFns; export declare const BackgroundWhiteOrgV2Item: 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 {};