import type { Background } from '../../parser/models/Background';
import type { BackgroundStepTest, MaybePromise } from '../types';
import type { ScenarioSteps } from './types';
type DescribeScenarioArgs = {
    background: Background;
    predefinedSteps: ScenarioSteps[];
    backgroundCallback: (op: BackgroundStepTest) => MaybePromise;
};
export declare function createBackgroundDescribeHandler({ background, predefinedSteps, backgroundCallback, }: DescribeScenarioArgs): () => void;
export {};
