import * as pulumi from "@pulumi/pulumi";
/**
 * Creates a user journey within a Resilience Hub system.
 */
export declare class UserJourney extends pulumi.CustomResource {
    /**
     * Get an existing UserJourney 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 opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): UserJourney;
    /**
     * Returns true if the given object is an instance of UserJourney.  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 UserJourney;
    /**
     * The timestamp when the user journey was created.
     */
    readonly createdAt: pulumi.Output<string>;
    /**
     * The description of the user journey.
     */
    readonly description: pulumi.Output<string | undefined>;
    /**
     * The name of the user journey.
     */
    readonly name: pulumi.Output<string>;
    /**
     * The ARN of the resilience policy to associate with this user journey.
     */
    readonly policyArn: pulumi.Output<string | undefined>;
    /**
     * The system ARN or system ID that owns this user journey.
     */
    readonly systemIdentifier: pulumi.Output<string>;
    /**
     * The timestamp when the user journey was last updated.
     */
    readonly updatedAt: pulumi.Output<string>;
    /**
     * The server-generated user journey ID.
     */
    readonly userJourneyId: pulumi.Output<string>;
    /**
     * Create a UserJourney 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: UserJourneyArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a UserJourney resource.
 */
export interface UserJourneyArgs {
    /**
     * The description of the user journey.
     */
    description?: pulumi.Input<string>;
    /**
     * The name of the user journey.
     */
    name?: pulumi.Input<string>;
    /**
     * The ARN of the resilience policy to associate with this user journey.
     */
    policyArn?: pulumi.Input<string>;
    /**
     * The system ARN or system ID that owns this user journey.
     */
    systemIdentifier: pulumi.Input<string>;
}
