import { AccessLevelList } from '../../shared/access-level';
import { PolicyStatement, Operator } from '../../shared';
import { aws_iam as iam } from "aws-cdk-lib";
/**
 * Statement provider for service [partnercentral-account-management](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awspartnercentralaccountmanagement.html).
 *
 * @param sid [SID](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_sid.html) of the statement
 */
export declare class PartnercentralAccountManagement extends PolicyStatement {
    servicePrefix: string;
    /**
     * Grants permission to Single Sign-On from AWS Partner Central into Legacy Partner Central
     *
     * Access Level: Write
     *
     * Possible conditions:
     * - .ifLegacyPartnerCentralRole()
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     */
    toAccessLegacyPartnerCentral(): this;
    /**
     * Grants permission to Single Sign-On from AWS Partner Central into Marketing Central
     *
     * Access Level: Write
     *
     * Possible conditions:
     * - .ifMarketingCentralRole()
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     */
    toAccessMarketingCentral(): this;
    /**
     * Grants permission to Single Sign-On from AWS Partner Central into ProServe Tools
     *
     * Access Level: Write
     *
     * Possible conditions:
     * - .ifProServeRole()
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     */
    toAccessProServeTools(): this;
    /**
     * Grants permission to associate Partner account to AWS account
     *
     * Access Level: Write
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     */
    toAssociatePartnerAccount(): this;
    /**
     * Grants permission to associate Partner user to IAM role
     *
     * Access Level: Write
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     */
    toAssociatePartnerUser(): this;
    /**
     * Grants permission to disassociate Partner user to IAM role
     *
     * Access Level: Write
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     */
    toDisassociatePartnerUser(): this;
    protected accessLevelList: AccessLevelList;
    /**
     * Filters access by the Legacy Partner Central role
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     *
     * Applies to actions:
     * - .toAccessLegacyPartnerCentral()
     *
     * @param value The value(s) to check
     * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
     */
    ifLegacyPartnerCentralRole(value: string | string[], operator?: Operator | string): this;
    /**
     * Filters access by Marketing Central role
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     *
     * Applies to actions:
     * - .toAccessMarketingCentral()
     *
     * @param value The value(s) to check
     * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
     */
    ifMarketingCentralRole(value: string | string[], operator?: Operator | string): this;
    /**
     * Filters access by ProServe Tools role
     *
     * https://docs.aws.amazon.com/partner-central/latest/getting-started/controlling-access-in-apc-account-management.html
     *
     * Applies to actions:
     * - .toAccessProServeTools()
     *
     * @param value The value(s) to check
     * @param operator Works with [string operators](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_policies_elements_condition_operators.html#Conditions_String). **Default:** `StringLike`
     */
    ifProServeRole(value: string | string[], operator?: Operator | string): this;
    /**
     * Statement provider for service [partnercentral-account-management](https://docs.aws.amazon.com/service-authorization/latest/reference/list_awspartnercentralaccountmanagement.html).
     *
     */
    constructor(props?: iam.PolicyStatementProps);
}
