/**
 * Command error description
 */
export declare const CommandErrorDescriptionEnum: {
    /**
     * Disabled Command
     * Command cannot be executed due to the camera status
     */
    readonly DISABLED_COMMAND: "DISABLED_COMMAND";
    /**
     * Missing Parameter
     * Insufficient required parameters to issue the command
     */
    readonly MISSING_PARAMETER: "MISSING_PARAMETER";
    /**
     * Invalid Parameter Value
     * Parameter value when command was issued is invalid
     */
    readonly INVALID_PARAMETER_VALUE: "INVALID_PARAMETER_VALUE";
    /**
     * Power Off Sequence Running
     * Process request when power supply is off
     */
    readonly POWER_OFF_SEQUENCE_RUNNING: "POWER_OFF_SEQUENCE_RUNNING";
    /**
     * Invalid File Format
     * Invalid file format specified
     */
    readonly INVALID_FILE_FORMAT: "INVALID_FILE_FORMAT";
    /**
     * Service Unavailable
     * Processing requests cannot be received temporarily
     */
    readonly SERVICE_UNAVAILABLE: "SERVICE_UNAVAILABLE";
    /**
     * Device Busy
     */
    readonly DEVICE_BUSY: "DEVICE_BUSY";
    /**
     * Unexpected
     * Other errors
     */
    readonly UNEXPECTED: "UNEXPECTED";
};
/** type definition of CommandErrorDescriptionEnum */
export type CommandErrorDescriptionEnum = typeof CommandErrorDescriptionEnum[keyof typeof CommandErrorDescriptionEnum];
//# sourceMappingURL=command-error-description.d.ts.map