/**
 * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
 * This product includes software developed at Datadog (https://www.datadoghq.com/).
 * Copyright 2020-Present Datadog, Inc.
 */
import { RetentionCurveWidgetDefinitionType } from "./RetentionCurveWidgetDefinitionType";
import { RetentionCurveWidgetRequest } from "./RetentionCurveWidgetRequest";
import { WidgetTextAlign } from "./WidgetTextAlign";
import { WidgetTime } from "./WidgetTime";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
/**
 * The retention curve widget visualizes user retention rates over time.
 */
export declare class RetentionCurveWidgetDefinition {
    /**
     * The description of the widget.
     */
    "description"?: string;
    /**
     * List of Retention Curve widget requests.
     */
    "requests": Array<RetentionCurveWidgetRequest>;
    /**
     * Time setting for the widget.
     */
    "time"?: WidgetTime;
    /**
     * Title of your widget.
     */
    "title"?: string;
    /**
     * How to align the text on the widget.
     */
    "titleAlign"?: WidgetTextAlign;
    /**
     * Size of the title.
     */
    "titleSize"?: string;
    /**
     * Type of the Retention Curve widget.
     */
    "type": RetentionCurveWidgetDefinitionType;
    /**
     * @ignore
     */
    "_unparsed"?: boolean;
    /**
     * @ignore
     */
    static readonly attributeTypeMap: AttributeTypeMap;
    /**
     * @ignore
     */
    static getAttributeTypeMap(): AttributeTypeMap;
    constructor();
}
