import Facade from "../../Facade"; import Filter from "../../interfaces/Filter"; import { TestItem } from "./testItem"; declare type FilterAssertion = (filter?: Filter) => Promise; interface Options { readonly facade: Facade; readonly toGetAllItems: FilterAssertion; readonly toGetFirstItem: FilterAssertion; readonly toGetSecondItem: FilterAssertion; readonly toGetNoItems: FilterAssertion; } declare const _default: ({ facade, toGetAllItems, toGetFirstItem, toGetSecondItem, toGetNoItems }: Options) => void; export default _default;