import { Construct } from 'constructs';
import { NestedStack, NestedStackProps } from 'aws-cdk-lib';
import { StateMachine } from 'aws-cdk-lib/aws-stepfunctions';
export declare class ExampleExpressStepFunctionStack extends NestedStack {
    readonly stepFunction: StateMachine;
    constructor(scope: Construct, id: string, props?: NestedStackProps);
}
