import type { TestInfo } from '@playwright/test'; export interface StepProps { category: string; title: string; apiName?: string; params?: Record; } type Complete = (result: { error?: any; }) => void; export declare function step(testInfo: TestInfo, props: StepProps, handler: (complete: Complete) => Promise>): Promise>; export {};