import { CustomResource } from "aws-cdk-lib";
import { Construct } from "constructs";
export interface AccountStorageConfigProperties {
    readonly storageConfigName: string;
    readonly bucketName: string;
}
export interface AccountStorageConfigProps extends AccountStorageConfigProperties {
    readonly serviceToken: string;
}
export declare class AccountStorageConfig extends CustomResource {
    constructor(scope: Construct, id: string, props: AccountStorageConfigProps);
    storageConfigId(): string;
}
