import * as sns from 'aws-cdk-lib/aws-sns';
import * as sfn from 'aws-cdk-lib/aws-stepfunctions';
import { Construct } from 'constructs';
export interface RunningControlStateMachineProps extends sfn.StateMachineProps {
    notificationTopic: sns.ITopic;
}
export declare class RunningControlStateMachine extends sfn.StateMachine {
    constructor(scope: Construct, id: string, props: RunningControlStateMachineProps);
}
