/**
 * FlowUs API
 * FlowUs Developer API
 *
 * The version of the OpenAPI document: 1.0.0
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface RichTextItemMentionDate
 */
export interface RichTextItemMentionDate {
    /**
     *
     * @type {string}
     * @memberof RichTextItemMentionDate
     */
    start?: string;
    /**
     *
     * @type {string}
     * @memberof RichTextItemMentionDate
     */
    end?: string;
    /**
     *
     * @type {string}
     * @memberof RichTextItemMentionDate
     */
    time_zone?: string;
}
/**
 * Check if a given object implements the RichTextItemMentionDate interface.
 */
export declare function instanceOfRichTextItemMentionDate(value: object): value is RichTextItemMentionDate;
export declare function RichTextItemMentionDateFromJSON(json: any): RichTextItemMentionDate;
export declare function RichTextItemMentionDateFromJSONTyped(json: any, ignoreDiscriminator: boolean): RichTextItemMentionDate;
export declare function RichTextItemMentionDateToJSON(json: any): RichTextItemMentionDate;
export declare function RichTextItemMentionDateToJSONTyped(value?: RichTextItemMentionDate | null, ignoreDiscriminator?: boolean): any;
