import { StorybookStoryExtended } from "../get-stories";
export interface TestplaneOpts {
    autoScreenshots: boolean;
    autoscreenshotSelector: string;
    autoScreenshotStorybookGlobals: Record<string, Record<string, unknown>>;
}
export declare const writeStoryTestsFile: ({ testFile, stories, opts, }: {
    testFile: string;
    stories: StorybookStoryExtended[];
    opts: TestplaneOpts;
}) => Promise<void>;
