import { RetentionDays } from 'aws-cdk-lib/aws-logs'; import { StateMachine } from 'aws-cdk-lib/aws-stepfunctions'; import { DotStack } from '../constructs/Stack'; export interface AddStepFunctionOptions { definitionFile?: string; definitionString?: string; logRetention?: RetentionDays; name?: string; scope: DotStack; } export declare const addStepFunction: (options: AddStepFunctionOptions) => StateMachine;