/**
 * Time shift shooting settings.
 *
 * For Theta X, Z1 and V.
 **/
export type TimeShift = {
    /**
     * Shooting order.
     * if true, first shoot the front side (side with Theta logo) then shoot the rear side (side with monitor).
     * if false, first shoot the rear side then shoot the front side.
     * Default is front first.
     */
    isFrontFirst?: boolean;
    /**
     * Time (sec) before 1st lens shooting.
     * For V or Z1, default is 5. For X, default is 2.
     */
    firstInterval?: TimeShiftIntervalEnum;
    /**
     * Time (sec) from 1st lens shooting until start of 2nd lens shooting.
     * Default is 5.
     */
    secondInterval?: TimeShiftIntervalEnum;
};
/**
 * Time shift interval in seconds
 */
export declare const TimeShiftIntervalEnum: {
    /** 0 second */
    readonly INTERVAL_0: "INTERVAL_0";
    /** 1 second */
    readonly INTERVAL_1: "INTERVAL_1";
    /** 2 seconds */
    readonly INTERVAL_2: "INTERVAL_2";
    /** 3 seconds */
    readonly INTERVAL_3: "INTERVAL_3";
    /** 4 seconds */
    readonly INTERVAL_4: "INTERVAL_4";
    /** 5 seconds */
    readonly INTERVAL_5: "INTERVAL_5";
    /** 6 seconds */
    readonly INTERVAL_6: "INTERVAL_6";
    /** 7 seconds */
    readonly INTERVAL_7: "INTERVAL_7";
    /** 8 seconds */
    readonly INTERVAL_8: "INTERVAL_8";
    /** 9 seconds */
    readonly INTERVAL_9: "INTERVAL_9";
    /** 10 seconds */
    readonly INTERVAL_10: "INTERVAL_10";
};
/** Type definition of TimeShiftIntervalEnum */
export type TimeShiftIntervalEnum = (typeof TimeShiftIntervalEnum)[keyof typeof TimeShiftIntervalEnum];
//# sourceMappingURL=option-time-shift.d.ts.map