import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List all available Tags. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Tags.getTags({}); * ``` */ export declare function getTags(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getTags. */ export interface GetTagsResult { /** * The ID of this resource. */ readonly id: string; /** * Tag list. */ readonly tags: outputs.Tags.GetTagsTag[]; } /** * List all available Tags. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.Tags.getTags({}); * ``` */ export declare function getTagsOutput(opts?: pulumi.InvokeOptions): pulumi.Output;