import type * as T from '../../../lib/common.types.js';
import type { StructFactoryResult, StructInitType } from '../../../lib/types.js';
declare const init: StructInitType;
export declare const LPSYSTEMTIME: "SYSTEMTIME*";
export declare const SYSTEMTIME_Name = "SYSTEMTIME";
export declare const SYSTEMTIME_Init: typeof init;
/**
 * SYSTEMTIME structure
 * @link https://learn.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-systemtime
 */
export declare function SYSTEMTIME_Factory(): StructFactoryResult<SYSTEMTIME_Type>;
/**
 * SYSTEMTIME structure
 * @link https://learn.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-systemtime
 */
export interface SYSTEMTIME_Type {
    wYear: T.WORD;
    wMonth: T.WORD;
    wDayOfWeek: T.WORD;
    wDay: T.WORD;
    wHour: T.WORD;
    wMinute: T.WORD;
    wSecond: T.WORD;
    wMilliseconds: T.WORD;
}
export {};
//# sourceMappingURL=SYSTEMTIME.d.ts.map