import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export declare const protobufPackage = "ua.gov.diia.types.ds.atoms"; export declare const AmountAtmColour: { readonly black: "black"; readonly green: "green"; readonly red: "red"; }; export type AmountAtmColour = typeof AmountAtmColour[keyof typeof AmountAtmColour]; export declare namespace AmountAtmColour { type black = typeof AmountAtmColour.black; type green = typeof AmountAtmColour.green; type red = typeof AmountAtmColour.red; } export declare function amountAtmColourFromJSON(object: any): AmountAtmColour; export declare function amountAtmColourToJSON(object: AmountAtmColour): string; export declare function amountAtmColourToNumber(object: AmountAtmColour): number; /** @see https://diia.atlassian.net/wiki/spaces/DIIA/pages/1625751649/amountAtm */ export interface AmountAtm { componentId: string; colour: AmountAtmColour; value: string; } export declare const AmountAtm: 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 {};