import koffi from 'koffi'; /** * Represents a point in a two-dimensional space. */ export interface IPoint { /** * The X coordinate of the point. */ x: number; /** * The Y coordinate of the point. */ y: number; } /** * Serves as a `POINT` struct compatible object. * * @see https://learn.microsoft.com/en-us/windows/win32/api/windef/ns-windef-point */ export declare class Point implements IPoint { x: number; y: number; /** * Creates a new Point object with the specified coordinates. * * @param point The coordinates of the point. All properties default to 0. */ constructor(point?: IPoint); } export declare const POINT: koffi.IKoffiCType; export declare const LPPOINT: koffi.IKoffiCType;