import { CustomResource } from "aws-cdk-lib";
import { Construct } from "constructs";
export interface AccountCredentialsProperties {
    readonly credentialsName: string;
    readonly roleArn: string;
}
export interface AccountCredentialsProps extends AccountCredentialsProperties {
    readonly serviceToken: string;
}
export declare class AccountCredentials extends CustomResource {
    constructor(scope: Construct, id: string, props: AccountCredentialsProps);
    credentialsId(): string;
}
