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