/** Length of standby time before the camera automatically powers OFF. */
export declare const OffDelayEnum: {
    /** Do not turn power off. */
    readonly DISABLE: "DISABLE";
    /** Power off after 5 minutes.(300sec) */
    readonly OFF_DELAY_5M: "OFF_DELAY_5M";
    /** Power off after 10 minutes.(600sec) */
    readonly OFF_DELAY_10M: "OFF_DELAY_10M";
    /** Power off after 15 minutes.(900sec) */
    readonly OFF_DELAY_15M: "OFF_DELAY_15M";
    /** Power off after 30 minutes.(1,800sec) */
    readonly OFF_DELAY_30M: "OFF_DELAY_30M";
};
/** type definition of OffDelayEnum */
export type OffDelayEnum = (typeof OffDelayEnum)[keyof typeof OffDelayEnum] | number;
/**
 * Get time(seconds) from OffDelayEnum
 * @param offDelay enum of OffDelay
 * @returns time(seconds)
 */
export declare function offDelayToSeconds(offDelay: OffDelayEnum): number;
//# sourceMappingURL=option-off-delay.d.ts.map