import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Gets list of items that violate tenant's configuration.
 *
 * Uses Azure REST API version 2022-12-01-preview.
 *
 * Other available API versions: 2020-09-01-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native portal [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare function listListTenantConfigurationViolation(args?: ListListTenantConfigurationViolationArgs, opts?: pulumi.InvokeOptions): Promise<ListListTenantConfigurationViolationResult>;
export interface ListListTenantConfigurationViolationArgs {
}
/**
 * List of list of items that violate tenant's configuration.
 */
export interface ListListTenantConfigurationViolationResult {
    /**
     * The link to the next page of items
     */
    readonly nextLink?: string;
    /**
     * The Violation items on this page
     */
    readonly value: outputs.portal.ViolationResponse[];
}
/**
 * Gets list of items that violate tenant's configuration.
 *
 * Uses Azure REST API version 2022-12-01-preview.
 *
 * Other available API versions: 2020-09-01-preview, 2025-04-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native portal [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
 */
export declare function listListTenantConfigurationViolationOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListListTenantConfigurationViolationResult>;
