import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
 * Props for FlowTimeUpdaterFunction
 */
export interface FlowTimeUpdaterFunctionProps extends lambda.FunctionOptions {
}
/**
 * An AWS Lambda function which executes src/core/flows/flow-time-updater/flow-time-updater.
 */
export declare class FlowTimeUpdaterFunction extends lambda.Function {
    constructor(scope: Construct, id: string, props?: FlowTimeUpdaterFunctionProps);
}
