/**
 * LINE Messaging API
 * This document describes LINE Messaging API.
 *
 * The version of the OpenAPI document: 0.0.1
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { ActionBase } from "./models.js";
export type DatetimePickerAction = ActionBase & {
    type: "datetimepicker";
    /**
     *
     * @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">data Documentation</a>
     */
    data?: string;
    /**
     *
     * @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">mode Documentation</a>
     */
    mode?: DatetimePickerAction.ModeEnum;
    /**
     *
     * @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">initial Documentation</a>
     */
    initial?: string;
    /**
     *
     * @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">max Documentation</a>
     */
    max?: string;
    /**
     *
     * @see <a href="https://developers.line.biz/en/reference/messaging-api/#datetime-picker-action">min Documentation</a>
     */
    min?: string;
};
export declare namespace DatetimePickerAction {
    type ModeEnum = "date" | "time" | "datetime";
}
//# sourceMappingURL=datetimePickerAction.d.ts.map