import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * This data source provides the list of RF Templates.
 *
 * The RF Templates can be used to define Wireless Access Points radio configuration, and can be assigned to the sites
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const templates = junipermist.org.getRftemplates({
 *     orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
 * });
 * ```
 */
export declare function getRftemplates(args: GetRftemplatesArgs, opts?: pulumi.InvokeOptions): Promise<GetRftemplatesResult>;
/**
 * A collection of arguments for invoking getRftemplates.
 */
export interface GetRftemplatesArgs {
    orgId: string;
    page?: number;
}
/**
 * A collection of values returned by getRftemplates.
 */
export interface GetRftemplatesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly orgId: string;
    readonly orgRftemplates: outputs.org.GetRftemplatesOrgRftemplate[];
    readonly page?: number;
}
/**
 * This data source provides the list of RF Templates.
 *
 * The RF Templates can be used to define Wireless Access Points radio configuration, and can be assigned to the sites
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const templates = junipermist.org.getRftemplates({
 *     orgId: "15fca2ac-b1a6-47cc-9953-cc6906281550",
 * });
 * ```
 */
export declare function getRftemplatesOutput(args: GetRftemplatesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRftemplatesResult>;
/**
 * A collection of arguments for invoking getRftemplates.
 */
export interface GetRftemplatesOutputArgs {
    orgId: pulumi.Input<string>;
    page?: pulumi.Input<number>;
}
