import { shallow, EnzymeSelector } from 'enzyme'; export interface ShallowOptions { shallow: typeof shallow; otherContext: Object; dive: boolean; untilSelector: EnzymeSelector; } export default function createShallow( options?: Partial ): typeof shallow;