import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = meraki.networks.getSmProfiles({
 *     networkId: "string",
 *     payloadTypes: ["string"],
 * });
 * export const merakiNetworksSmProfilesExample = example.then(example => example.items);
 * ```
 */
export declare function getSmProfiles(args: GetSmProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetSmProfilesResult>;
/**
 * A collection of arguments for invoking getSmProfiles.
 */
export interface GetSmProfilesArgs {
    /**
     * networkId path parameter. Network ID
     */
    networkId: string;
    /**
     * payloadTypes query parameter. Filter by payload types
     */
    payloadTypes?: string[];
}
/**
 * A collection of values returned by getSmProfiles.
 */
export interface GetSmProfilesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * Array of ResponseSmGetNetworkSmProfiles
     */
    readonly items: outputs.networks.GetSmProfilesItem[];
    /**
     * networkId path parameter. Network ID
     */
    readonly networkId: string;
    /**
     * payloadTypes query parameter. Filter by payload types
     */
    readonly payloadTypes?: string[];
}
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = meraki.networks.getSmProfiles({
 *     networkId: "string",
 *     payloadTypes: ["string"],
 * });
 * export const merakiNetworksSmProfilesExample = example.then(example => example.items);
 * ```
 */
export declare function getSmProfilesOutput(args: GetSmProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSmProfilesResult>;
/**
 * A collection of arguments for invoking getSmProfiles.
 */
export interface GetSmProfilesOutputArgs {
    /**
     * networkId path parameter. Network ID
     */
    networkId: pulumi.Input<string>;
    /**
     * payloadTypes query parameter. Filter by payload types
     */
    payloadTypes?: pulumi.Input<pulumi.Input<string>[]>;
}
