import type * as T from '../../../lib/common.types.js';
import type { StructFactoryResult, StructInitType } from '../../../lib/types.js';
import type { POINT_Type } from '../windef/POINT.js';
declare const init: StructInitType;
export declare const LPALTTABINFO: "ALTTABINFO*";
export declare const ALTTABINFO_Name = "ALTTABINFO";
export declare const ALTTABINFO_Init: typeof init;
/**
 * ALTTABINFO structure
 * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-alttabinfo
 */
export declare function ALTTABINFO_Factory(): StructFactoryResult<ALTTABINFO_Type>;
/**
 *  ALTTABINFO structure
 * @link https://learn.microsoft.com/en-us/windows/win32/api/winuser/ns-winuser-alttabinfo
 */
export interface ALTTABINFO_Type {
    cbSize: T.DWORD;
    cItems: T.INT;
    cColumns: T.INT;
    cRows: T.INT;
    iColFocus: T.INT;
    iRowFocus: T.INT;
    cxItem: T.INT;
    cyItem: T.INT;
    ptStart: POINT_Type;
}
export {};
//# sourceMappingURL=ALTTABINFO.d.ts.map