export type TemplateType = 'base' | 'web' | 'react' | 'preact';
export interface F2etestOptions {
    template?: TemplateType;
    disableLog?: boolean;
}
export default function f2etest(project: string, options?: F2etestOptions): Promise<void>;
