import type * as T from '../../../lib/common.types.js';
import type { StructFactoryResult, StructInitType } from '../../../lib/types.js';
declare const init: StructInitType;
export declare const LPFILETIME: "FILETIME*";
export declare const LPFILETIME_Name = "FILETIME";
export declare const FILETIME_Init: typeof init;
/**
 * FILETIME structure
 * @link https://learn.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-filetime
 */
export declare function FILETIME_Factory(): StructFactoryResult<FILETIME_Type>;
/**
 * FILETIME structure
 * @link https://learn.microsoft.com/en-us/windows/win32/api/minwinbase/ns-minwinbase-filetime
 */
export interface FILETIME_Type {
    dwLowDateTime: T.DWORD;
    dwHighDateTime: T.DWORD;
}
export {};
//# sourceMappingURL=FILETIME.d.ts.map