export declare const EncodingType: { readonly binary: "binary"; readonly json: "json"; }; export type EncodingType = (typeof EncodingType)[keyof typeof EncodingType]; export declare const FunctionIsolationMode: { readonly GreengrassContainer: "GreengrassContainer"; readonly NoContainer: "NoContainer"; }; export type FunctionIsolationMode = (typeof FunctionIsolationMode)[keyof typeof FunctionIsolationMode]; export declare const Permission: { readonly ro: "ro"; readonly rw: "rw"; }; export type Permission = (typeof Permission)[keyof typeof Permission]; export declare const LoggerComponent: { readonly GreengrassSystem: "GreengrassSystem"; readonly Lambda: "Lambda"; }; export type LoggerComponent = (typeof LoggerComponent)[keyof typeof LoggerComponent]; export declare const LoggerLevel: { readonly DEBUG: "DEBUG"; readonly ERROR: "ERROR"; readonly FATAL: "FATAL"; readonly INFO: "INFO"; readonly WARN: "WARN"; }; export type LoggerLevel = (typeof LoggerLevel)[keyof typeof LoggerLevel]; export declare const LoggerType: { readonly AWSCloudWatch: "AWSCloudWatch"; readonly FileSystem: "FileSystem"; }; export type LoggerType = (typeof LoggerType)[keyof typeof LoggerType]; export declare const DeploymentType: { readonly ForceResetDeployment: "ForceResetDeployment"; readonly NewDeployment: "NewDeployment"; readonly Redeployment: "Redeployment"; readonly ResetDeployment: "ResetDeployment"; }; export type DeploymentType = (typeof DeploymentType)[keyof typeof DeploymentType]; export declare const BulkDeploymentStatus: { readonly Completed: "Completed"; readonly Failed: "Failed"; readonly Initializing: "Initializing"; readonly Running: "Running"; readonly Stopped: "Stopped"; readonly Stopping: "Stopping"; }; export type BulkDeploymentStatus = (typeof BulkDeploymentStatus)[keyof typeof BulkDeploymentStatus]; export declare const ConfigurationSyncStatus: { readonly InSync: "InSync"; readonly OutOfSync: "OutOfSync"; }; export type ConfigurationSyncStatus = (typeof ConfigurationSyncStatus)[keyof typeof ConfigurationSyncStatus]; export declare const SoftwareToUpdate: { readonly core: "core"; readonly ota_agent: "ota_agent"; }; export type SoftwareToUpdate = (typeof SoftwareToUpdate)[keyof typeof SoftwareToUpdate]; export declare const UpdateAgentLogLevel: { readonly DEBUG: "DEBUG"; readonly ERROR: "ERROR"; readonly FATAL: "FATAL"; readonly INFO: "INFO"; readonly NONE: "NONE"; readonly TRACE: "TRACE"; readonly VERBOSE: "VERBOSE"; readonly WARN: "WARN"; }; export type UpdateAgentLogLevel = (typeof UpdateAgentLogLevel)[keyof typeof UpdateAgentLogLevel]; export declare const UpdateTargetsArchitecture: { readonly aarch64: "aarch64"; readonly armv6l: "armv6l"; readonly armv7l: "armv7l"; readonly x86_64: "x86_64"; }; export type UpdateTargetsArchitecture = (typeof UpdateTargetsArchitecture)[keyof typeof UpdateTargetsArchitecture]; export declare const UpdateTargetsOperatingSystem: { readonly amazon_linux: "amazon_linux"; readonly openwrt: "openwrt"; readonly raspbian: "raspbian"; readonly ubuntu: "ubuntu"; }; export type UpdateTargetsOperatingSystem = (typeof UpdateTargetsOperatingSystem)[keyof typeof UpdateTargetsOperatingSystem]; export declare const Telemetry: { readonly Off: "Off"; readonly On: "On"; }; export type Telemetry = (typeof Telemetry)[keyof typeof Telemetry];