import * as pulumi from "@pulumi/pulumi";
/**
 * This resource is used to customize the NAC Portal.
 *
 * The NAC Portal Template can be used to define:
 *
 * * The portal alignment, color scheme, and logo
 *
 * * , and whether to display the "Powered by Juniper Mist" footer.
 *
 * **Notes:**
 *
 * * There is no feedback from the API, so there is no possibility to validate the changes. The resource state is directly generated based on the resource plan. Deleting this resource will revert the NAC Portal Template to its default values. Once removed from state, it is possible to create a new one, which will replace the previous template.
 *
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as junipermist from "@pulumi/juniper-mist";
 *
 * // Create a NAC Portal first
 * const guestPortal = new junipermist.org.NacPortal("guest_portal", {
 *     orgId: terraformTest.id,
 *     name: "Guest Portal",
 *     type: "guest_portal",
 *     accessType: "wireless",
 *     ssid: "Guest-Network",
 * });
 * // Example 1: Basic NAC Portal Template with centered alignment
 * const centeredTemplate = new junipermist.org.NacPortalTemplate("centered_template", {
 *     orgId: terraformTest.id,
 *     nacportalId: guestPortal.id,
 *     alignment: "center",
 *     color: "#1074bc",
 *     poweredBy: false,
 * });
 * // Example 2: NAC Portal Template with logo and left alignment
 * const logoTemplate = new junipermist.org.NacPortalTemplate("logo_template", {
 *     orgId: terraformTest.id,
 *     nacportalId: guestPortal.id,
 *     alignment: "left",
 *     color: "#ff6600",
 *     logo: "logo.png",
 *     poweredBy: true,
 * });
 * ```
 */
export declare class NacPortalTemplate extends pulumi.CustomResource {
    /**
     * Get an existing NacPortalTemplate resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param state Any extra arguments used during the lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, state?: NacPortalTemplateState, opts?: pulumi.CustomResourceOptions): NacPortalTemplate;
    /**
     * Returns true if the given object is an instance of NacPortalTemplate.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is NacPortalTemplate;
    /**
     * Text and content alignment for the NAC portal page
     */
    readonly alignment: pulumi.Output<string>;
    /**
     * Primary color used by the NAC portal template
     */
    readonly color: pulumi.Output<string>;
    /**
     * path to the logo image file. File must be a `png` image less than 100kB and image dimension must be less 500px x 200px (width x height).
     */
    readonly logo: pulumi.Output<string | undefined>;
    /**
     * Org NAC Portal ID
     */
    readonly nacportalId: pulumi.Output<string>;
    readonly orgId: pulumi.Output<string>;
    /**
     * Whether to hide "Powered by Juniper Mist" and email footers
     */
    readonly poweredBy: pulumi.Output<boolean>;
    /**
     * Create a NacPortalTemplate resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: NacPortalTemplateArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering NacPortalTemplate resources.
 */
export interface NacPortalTemplateState {
    /**
     * Text and content alignment for the NAC portal page
     */
    alignment?: pulumi.Input<string | undefined>;
    /**
     * Primary color used by the NAC portal template
     */
    color?: pulumi.Input<string | undefined>;
    /**
     * path to the logo image file. File must be a `png` image less than 100kB and image dimension must be less 500px x 200px (width x height).
     */
    logo?: pulumi.Input<string | undefined>;
    /**
     * Org NAC Portal ID
     */
    nacportalId?: pulumi.Input<string | undefined>;
    orgId?: pulumi.Input<string | undefined>;
    /**
     * Whether to hide "Powered by Juniper Mist" and email footers
     */
    poweredBy?: pulumi.Input<boolean | undefined>;
}
/**
 * The set of arguments for constructing a NacPortalTemplate resource.
 */
export interface NacPortalTemplateArgs {
    /**
     * Text and content alignment for the NAC portal page
     */
    alignment?: pulumi.Input<string | undefined>;
    /**
     * Primary color used by the NAC portal template
     */
    color?: pulumi.Input<string | undefined>;
    /**
     * path to the logo image file. File must be a `png` image less than 100kB and image dimension must be less 500px x 200px (width x height).
     */
    logo?: pulumi.Input<string | undefined>;
    /**
     * Org NAC Portal ID
     */
    nacportalId: pulumi.Input<string>;
    orgId: pulumi.Input<string>;
    /**
     * Whether to hide "Powered by Juniper Mist" and email footers
     */
    poweredBy?: pulumi.Input<boolean | undefined>;
}
//# sourceMappingURL=nacPortalTemplate.d.ts.map