import { Construct } from 'constructs';
import { StateMachine } from 'aws-cdk-lib/aws-stepfunctions';
import { ExpressStepFunctionProps } from '../../types/ExpressStepFunction.type';
export declare class ExpressStepFunction extends Construct {
    readonly stateMachine: StateMachine;
    constructor(scope: Construct, id: string, props: ExpressStepFunctionProps);
}
