import type * as T from 'win32-def/types'; import { RECT_Type } from 'win32-def/struct'; /** * * BOOL GetWindowRect( [in] HWND hWnd, [out] LPRECT lpRect ); */ interface IGetWindowRect { (hWnd: T.HWND, lpRect: RECT_Type): T.BOOL; } export declare const GetWindowRect: IGetWindowRect; export {};