import { TAdapterIdentifiers } from '@flopflip/types';

type TCypressPluginAddCommandOptions = {
    adapterId: TAdapterIdentifiers;
};
declare const addCommands: (options: TCypressPluginAddCommandOptions) => void;
declare const install: (_on: any) => void;

declare const version = "__@FLOPFLIP/VERSION_OF_RELEASE__";

export { addCommands, install, version };
