import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * List all available Remote Path Mappings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.DownloadClients.getRemotePathMappings({}); * ``` */ export declare function getRemotePathMappings(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getRemotePathMappings. */ export interface GetRemotePathMappingsResult { /** * The ID of this resource. */ readonly id: string; /** * Remote Path Mapping list. */ readonly remotePathMappings: outputs.DownloadClients.GetRemotePathMappingsRemotePathMapping[]; } /** * List all available Remote Path Mappings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as lidarr from "@pulumi/lidarr"; * * const example = lidarr.DownloadClients.getRemotePathMappings({}); * ``` */ export declare function getRemotePathMappingsOutput(opts?: pulumi.InvokeOptions): pulumi.Output;