export declare function findOnPage<ExpectedResultType extends HTMLElement>(selector: string, parent?: HTMLElement | Document): ExpectedResultType | null;
export declare function findOnPage<ExpectedResultType extends SVGElement>(selector: string, parent?: HTMLElement | Document): ExpectedResultType | null;
export declare const $$: typeof findOnPage;
