declare type GetElement = (target: T) => T extends string ? HTMLElement | null : T; export declare const getElement: GetElement; export {};