import { Construct } from "constructs";
import { CustomResource } from "aws-cdk-lib";
export interface SecretProperties {
    workspaceUrl: string;
    scope: string;
    key: string;
    stringValue: string;
}
export interface SecretProps extends SecretProperties {
    readonly serviceToken: string;
}
export declare class Secret extends CustomResource {
    constructor(scope: Construct, id: string, props: SecretProps);
}
