export interface IGetCaretCoordinatesOption { debug?: boolean; } declare function getCaretCoordinates(element: HTMLInputElement | HTMLTextAreaElement, position: number, { debug }: IGetCaretCoordinatesOption): { top: number; left: number; height: number; }; export default getCaretCoordinates;