import { BinaryReader, BinaryWriter } from "@bufbuild/protobuf/wire"; export interface OperationalAuthority { $type: "keelson.OperationalAuthority"; /** The source timestamp of the authority determination */ timestamp: Date | undefined; /** The current authority level */ level: OperationalAuthority_AuthorityLevel; /** Normalized composite health score (0.0 = all failed, 1.0 = all healthy) */ compositeScore: number; /** Human-readable explanation for the current authority level */ reason: string; /** Per-component health scores (key = component id, value = 0.0-1.0) */ componentScores: { [key: string]: number; }; } export declare enum OperationalAuthority_AuthorityLevel { AUTHORITY_LEVEL_UNKNOWN = 0, AUTHORITY_LEVEL_MINIMAL_SAFE_MODE = 1, AUTHORITY_LEVEL_SUPERVISED_REMOTE = 2, AUTHORITY_LEVEL_REMOTE_CONTROLLED = 3, AUTHORITY_LEVEL_ASSISTED_AUTONOMOUS = 4, AUTHORITY_LEVEL_FULL_AUTONOMOUS = 5, UNRECOGNIZED = -1 } export declare function operationalAuthority_AuthorityLevelFromJSON(object: any): OperationalAuthority_AuthorityLevel; export declare function operationalAuthority_AuthorityLevelToJSON(object: OperationalAuthority_AuthorityLevel): string; export interface OperationalAuthority_ComponentScoresEntry { $type: "keelson.OperationalAuthority.ComponentScoresEntry"; key: string; value: number; } export declare const OperationalAuthority: MessageFns; export declare const OperationalAuthority_ComponentScoresEntry: MessageFns; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; type DeepPartial = T extends Builtin ? T : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in Exclude]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & { [K in Exclude | "$type">]: never; }; interface MessageFns { readonly $type: V; encode(message: T, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): T; fromJSON(object: any): T; toJSON(message: T): unknown; create, I>>(base?: I): T; fromPartial, I>>(object: I): T; } export {};