import { Suite } from 'mocha';
import { Config } from '../../types.js';
export declare function addTestsFromStories(rootSuite: Suite, config: Config, { browser, ...options }: {
    browser: string;
    watch: boolean;
    debug: boolean;
    port: number;
}): Promise<void>;
