export type GlobalThis = typeof globalThis;
/**
 * Provides access to `globalThis`, ensuring cross-platform compatibility.
 *
 * @example
 * ```typescript
 * getGlobalThis<{alwatr:{foo: string}}>().alwatr = {
 *  foo: 'bar',
 * }
 * ```
 */
export declare function getGlobalThis<T extends DictionaryOpt = GlobalThis>(): GlobalThis & T;
//# sourceMappingURL=main.d.ts.map