import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = new meraki.organizations.BrandingPolicies("example", {
 *     adminSettings: {
 *         appliesTo: "All admins of networks...",
 *         values: [
 *             "N_1234",
 *             "L_5678",
 *         ],
 *     },
 *     customLogo: {
 *         enabled: true,
 *         image: {
 *             contents: "Hyperg26C8F4h8CvcoUqpA==",
 *             format: "jpg",
 *         },
 *     },
 *     enabled: true,
 *     helpSettings: {
 *         apiDocsSubtab: "default or inherit",
 *         casesSubtab: "hide",
 *         ciscoMerakiProductDocumentation: "show",
 *         communitySubtab: "show",
 *         dataProtectionRequestsSubtab: "default or inherit",
 *         firewallInfoSubtab: "hide",
 *         getHelpSubtab: "default or inherit",
 *         getHelpSubtabKnowledgeBaseSearch: "<h1>Some custom HTML content</h1>",
 *         hardwareReplacementsSubtab: "hide",
 *         helpTab: "show",
 *         helpWidget: "hide",
 *         newFeaturesSubtab: "show",
 *         smForums: "hide",
 *         supportContactInfo: "show",
 *         universalSearchKnowledgeBaseSearch: "hide",
 *     },
 *     name: "My Branding Policy",
 *     organizationId: "string",
 * });
 * export const merakiOrganizationsBrandingPoliciesExample = example;
 * ```
 *
 * ## Import
 *
 * ```sh
 * $ pulumi import meraki:organizations/brandingPolicies:BrandingPolicies example "branding_policy_id,organization_id"
 * ```
 */
export declare class BrandingPolicies extends pulumi.CustomResource {
    /**
     * Get an existing BrandingPolicies 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?: BrandingPoliciesState, opts?: pulumi.CustomResourceOptions): BrandingPolicies;
    /**
     * Returns true if the given object is an instance of BrandingPolicies.  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 BrandingPolicies;
    /**
     * Settings for describing which kinds of admins this policy applies to.
     */
    readonly adminSettings: pulumi.Output<outputs.organizations.BrandingPoliciesAdminSettings>;
    /**
     * brandingPolicyId path parameter. Branding policy ID
     */
    readonly brandingPolicyId: pulumi.Output<string | undefined>;
    /**
     * Properties describing the custom logo attached to the branding policy.
     */
    readonly customLogo: pulumi.Output<outputs.organizations.BrandingPoliciesCustomLogo>;
    /**
     * Boolean indicating whether this policy is enabled.
     */
    readonly enabled: pulumi.Output<boolean>;
    /**
     * Settings for describing the modifications to various Help page features. Each property in this object accepts one of
     *   'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show
     *   the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on
     *   Dashboard; see the documentation for each property to see the allowed values.
     */
    readonly helpSettings: pulumi.Output<outputs.organizations.BrandingPoliciesHelpSettings>;
    /**
     * Name of the Dashboard branding policy.
     */
    readonly name: pulumi.Output<string>;
    /**
     * organizationId path parameter. Organization ID
     */
    readonly organizationId: pulumi.Output<string>;
    /**
     * Create a BrandingPolicies 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: BrandingPoliciesArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * Input properties used for looking up and filtering BrandingPolicies resources.
 */
export interface BrandingPoliciesState {
    /**
     * Settings for describing which kinds of admins this policy applies to.
     */
    adminSettings?: pulumi.Input<inputs.organizations.BrandingPoliciesAdminSettings | undefined>;
    /**
     * brandingPolicyId path parameter. Branding policy ID
     */
    brandingPolicyId?: pulumi.Input<string | undefined>;
    /**
     * Properties describing the custom logo attached to the branding policy.
     */
    customLogo?: pulumi.Input<inputs.organizations.BrandingPoliciesCustomLogo | undefined>;
    /**
     * Boolean indicating whether this policy is enabled.
     */
    enabled?: pulumi.Input<boolean | undefined>;
    /**
     * Settings for describing the modifications to various Help page features. Each property in this object accepts one of
     *   'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show
     *   the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on
     *   Dashboard; see the documentation for each property to see the allowed values.
     */
    helpSettings?: pulumi.Input<inputs.organizations.BrandingPoliciesHelpSettings | undefined>;
    /**
     * Name of the Dashboard branding policy.
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * organizationId path parameter. Organization ID
     */
    organizationId?: pulumi.Input<string | undefined>;
}
/**
 * The set of arguments for constructing a BrandingPolicies resource.
 */
export interface BrandingPoliciesArgs {
    /**
     * Settings for describing which kinds of admins this policy applies to.
     */
    adminSettings?: pulumi.Input<inputs.organizations.BrandingPoliciesAdminSettings | undefined>;
    /**
     * brandingPolicyId path parameter. Branding policy ID
     */
    brandingPolicyId?: pulumi.Input<string | undefined>;
    /**
     * Properties describing the custom logo attached to the branding policy.
     */
    customLogo?: pulumi.Input<inputs.organizations.BrandingPoliciesCustomLogo | undefined>;
    /**
     * Boolean indicating whether this policy is enabled.
     */
    enabled?: pulumi.Input<boolean | undefined>;
    /**
     * Settings for describing the modifications to various Help page features. Each property in this object accepts one of
     *   'default or inherit' (do not modify functionality), 'hide' (remove the section from Dashboard), or 'show' (always show
     *   the section on Dashboard). Some properties in this object also accept custom HTML used to replace the section on
     *   Dashboard; see the documentation for each property to see the allowed values.
     */
    helpSettings?: pulumi.Input<inputs.organizations.BrandingPoliciesHelpSettings | undefined>;
    /**
     * Name of the Dashboard branding policy.
     */
    name?: pulumi.Input<string | undefined>;
    /**
     * organizationId path parameter. Organization ID
     */
    organizationId: pulumi.Input<string>;
}
//# sourceMappingURL=brandingPolicies.d.ts.map