import { aws_iam } from 'aws-cdk-lib';
/**
 * Base class for the Policy Statement
 */
export declare class PolicyStatementBase extends aws_iam.PolicyStatement {
    /**
     * Holds the prefix of the service actions, e.g. `ec2`
     */
    servicePrefix: string;
}
