import * as pulumi from "@pulumi/pulumi";
/**
 * This chart type displays an overview of your SLO and can give more specific insights into your SLI performance using different filter and customized time ranges.
 *
 * ## Example
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as signalfx from "@pulumi/signalfx";
 *
 * const myslochart0 = new signalfx.SloChart("myslochart0", {sloId: "GbOHXbSAEAA"});
 * ```
 */
export declare class SloChart extends pulumi.CustomResource {
    /**
     * Get an existing SloChart resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: SloChartState, opts?: pulumi.CustomResourceOptions): SloChart;
    /**
     * Returns true if the given object is an instance of SloChart.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is SloChart;
    /**
     * ID of SLO object.
     */
    readonly sloId: pulumi.Output<string>;
    /**
     * The URL of the chart.
     */
    readonly url: pulumi.Output<string>;
    /**
     * Create a SloChart resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: SloChartArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering SloChart resources.
 */
export interface SloChartState {
    /**
     * ID of SLO object.
     */
    sloId?: pulumi.Input<string | undefined>;
    /**
     * The URL of the chart.
     */
    url?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a SloChart resource.
 */
export interface SloChartArgs {
    /**
     * ID of SLO object.
     */
    sloId: pulumi.Input<string>;
}
//# sourceMappingURL=sloChart.d.ts.map