import { Construct } from "constructs";
import { FlowBase, FlowProps, IFlow } from "./flow-base";
export interface OnDemandFlowProps extends FlowProps {
}
export declare class OnDemandFlow extends FlowBase implements IFlow {
    constructor(scope: Construct, id: string, props: OnDemandFlowProps);
}
