import * as pulumi from "@pulumi/pulumi";
/**
 * This data source provides the of list of supported Fingerprints.
 *
 * The Fingerprint information can be used within `matching` and `notMatching` attributes of the NAC Rule resource (`junipermist.org.Nacrule`)
 *
 * There are four different types of fingerprints available:* Family
 * * Model
 * * Mfg
 * * OS Type
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const listOfFingerprints = junipermist.getConstFingerprints({});
 * ```
 */
export declare function getConstFingerprints(opts?: pulumi.InvokeOptions): Promise<GetConstFingerprintsResult>;
/**
 * A collection of values returned by getConstFingerprints.
 */
export interface GetConstFingerprintsResult {
    readonly families: string[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly mfgs: string[];
    readonly models: string[];
    readonly os: string[];
}
/**
 * This data source provides the of list of supported Fingerprints.
 *
 * The Fingerprint information can be used within `matching` and `notMatching` attributes of the NAC Rule resource (`junipermist.org.Nacrule`)
 *
 * There are four different types of fingerprints available:* Family
 * * Model
 * * Mfg
 * * OS Type
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/junipermist";
 *
 * const listOfFingerprints = junipermist.getConstFingerprints({});
 * ```
 */
export declare function getConstFingerprintsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConstFingerprintsResult>;
