import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; import { PaddingMode } from "../../ui.js"; import { IconAction } from "../atoms/iconAction.js"; import { Icon } from "../icon.js"; import { AttentionIconMessageMlc } from "../molecules/attentionIconMessageMlc.js"; import { TableItemHorizontalMlc } from "../molecules/tableItemHorizontalMlc.js"; import { TableItemVerticalMlc } from "../molecules/tableItemVerticalMlc.js"; import { MediaGroupOrg } from "./mediaGroupOrg.js"; export declare const protobufPackage = "ua.gov.diia.types.ds.organisms"; export interface AccordionOrg { componentId: string; paddingMode?: PaddingMode | undefined; heading: string; description?: string | undefined; states?: AccordionOrgStates | undefined; expandedContent?: AccordionOrgExpandedContent | undefined; descriptionIcon?: AccordionOrgDescriptionIcon | undefined; } export interface AccordionOrgDescriptionIcon { code: Icon; accessibilityDescription?: string | undefined; action?: IconAction | undefined; componentId?: string | undefined; } export interface AccordionOrgStates { isExpanded?: boolean | undefined; expandedIcon: AccordionOrgIcon | undefined; collapsedIcon: AccordionOrgIcon | undefined; } export interface AccordionOrgIcon { componentId?: string | undefined; code: Icon; accessibilityDescription?: string | undefined; action?: IconAction | undefined; } export interface AccordionOrgExpandedContent { items: AccordionOrgExpandedContentItem[]; showDivider?: boolean | undefined; attentionIconMessageMlc?: AttentionIconMessageMlc | undefined; } export interface AccordionOrgExpandedContentItem { tableItemVerticalMlc?: TableItemVerticalMlc | undefined; tableItemHorizontalMlc?: TableItemHorizontalMlc | undefined; mediaGroupOrg?: MediaGroupOrg | undefined; } export declare const AccordionOrg: MessageFns; export declare const AccordionOrgDescriptionIcon: MessageFns; export declare const AccordionOrgStates: MessageFns; export declare const AccordionOrgIcon: MessageFns; export declare const AccordionOrgExpandedContent: MessageFns; export declare const AccordionOrgExpandedContentItem: 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 {};