import type { MaybePromise } from './types/internal';
type Options = Readonly<{
    skipLogs?: boolean;
    timeout?: number;
}>;
/**
 * Declares a test step (calls Playwright's `test.step` function inside).
 */
export declare const step: (name: string, body?: () => MaybePromise<void>, options?: Options) => Promise<void>;
export {};
