import * as pulumi from "@pulumi/pulumi";
/**
 * Updates an existing GitLab integration's settings, such as PR comment preferences and AI summary options.
 */
export declare class GitLabIntegration extends pulumi.CustomResource {
    /**
     * Get an existing GitLabIntegration 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): GitLabIntegration;
    /**
     * Returns true if the given object is an instance of GitLabIntegration.  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 GitLabIntegration;
    /**
     * The Pulumi user whose GitLab authentication token is being used, if applicable.
     */
    readonly authUser: pulumi.Output<any | undefined>;
    /**
     * The URL of the GitLab group's avatar image.
     */
    readonly avatarUrl: pulumi.Output<string | undefined>;
    /**
     * Whether detailed property-level diffs are disabled for PR comments.
     */
    readonly disableDetailedDiff: pulumi.Output<boolean>;
    /**
     * Whether Neo AI summaries are disabled for this integration.
     */
    readonly disableNeoSummaries: pulumi.Output<boolean>;
    /**
     * Whether PR comments are disabled for this integration.
     */
    readonly disablePRComments: pulumi.Output<boolean>;
    /**
     * The GitLab group ID linked to this integration.
     */
    readonly gitLabGroupId: pulumi.Output<number>;
    /**
     * Metadata about the GitLab group linked to this integration.
     */
    readonly gitLabOrg: pulumi.Output<any | undefined>;
    /**
     * The expiration date of the group access token, if one is being used for authentication.
     */
    readonly groupAccessTokenExpiration: pulumi.Output<string | undefined>;
    /**
     * The display name of the GitLab group.
     */
    readonly groupName: pulumi.Output<string | undefined>;
    /**
     * The URL-safe path of the GitLab group (e.g. 'parent-group/child-group').
     */
    readonly groupPath: pulumi.Output<string | undefined>;
    /**
     * Whether the integration has been fully installed.
     */
    readonly installed: pulumi.Output<boolean>;
    /**
     * Whether the integration is currently valid (tokens, hooks, etc.).
     */
    readonly valid: pulumi.Output<boolean>;
    /**
     * Create a GitLabIntegration 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: GitLabIntegrationArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a GitLabIntegration resource.
 */
export interface GitLabIntegrationArgs {
    /**
     * Whether detailed property-level diffs are disabled for PR comments.
     */
    disableDetailedDiff?: pulumi.Input<boolean | undefined>;
    /**
     * Whether Neo AI summaries are disabled for this integration.
     */
    disableNeoSummaries?: pulumi.Input<boolean | undefined>;
    /**
     * Whether PR comments are disabled for this integration.
     */
    disablePRComments?: pulumi.Input<boolean | undefined>;
    /**
     * The GitLab integration identifier
     */
    integrationId: pulumi.Input<string>;
    /**
     * The organization name
     */
    orgName: pulumi.Input<string>;
}
//# sourceMappingURL=gitLabIntegration.d.ts.map