UNPKG

460 BTypeScriptView Raw
1import type { StyledComponent } from "./index";
2
3export function find(element: HTMLElement, styledComponent: StyledComponent<any, any, any, any>): HTMLElement | null;
4
5export function findAll(element: HTMLElement, styledComponent: StyledComponent<any, any, any, any>): NodeList | null;
6
7export function enzymeFind<Wrapper extends { find: (selector: string) => any }>(
8 wrapper: Wrapper,
9 styledComponent: StyledComponent<any, any, any, any>,
10): Wrapper;