import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 */
export declare function getFloorPlans(args?: GetFloorPlansArgs, opts?: pulumi.InvokeOptions): Promise<GetFloorPlansResult>;
/**
 * A collection of arguments for invoking getFloorPlans.
 */
export interface GetFloorPlansArgs {
    /**
     * floorPlanId path parameter. Floor plan ID
     */
    floorPlanId?: string;
    /**
     * networkId path parameter. Network ID
     */
    networkId?: string;
}
/**
 * A collection of values returned by getFloorPlans.
 */
export interface GetFloorPlansResult {
    /**
     * floorPlanId path parameter. Floor plan ID
     */
    readonly floorPlanId?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly item: outputs.networks.GetFloorPlansItem;
    /**
     * Array of ResponseNetworksGetNetworkFloorPlans
     */
    readonly items: outputs.networks.GetFloorPlansItem[];
    /**
     * networkId path parameter. Network ID
     */
    readonly networkId?: string;
}
/**
 * ## Example Usage
 */
export declare function getFloorPlansOutput(args?: GetFloorPlansOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFloorPlansResult>;
/**
 * A collection of arguments for invoking getFloorPlans.
 */
export interface GetFloorPlansOutputArgs {
    /**
     * floorPlanId path parameter. Floor plan ID
     */
    floorPlanId?: pulumi.Input<string>;
    /**
     * networkId path parameter. Network ID
     */
    networkId?: pulumi.Input<string>;
}
