/**
 * Represents information about the current platform.
 */
interface PlatformInfo {
    /**
     * Whether the NODE_ENV environment variable is not `production` or in browser location.hostname is `localhost`.
     */
    readonly development: boolean;
    /**
     * Whether the current platform is node.js.
     */
    readonly isNode: boolean;
    /**
     * Whether the current platform is a browser.
     */
    readonly isBrowser: boolean;
    /**
     * Whether the current platform is a not a browser.
     */
    readonly isCli: boolean;
    /**
     * Whether the current platform is a web worker.
     */
    readonly isWebWorker: boolean;
    /**
     * Whether the current platform is deno.
     */
    readonly isDeno: boolean;
    /**
     * Whether the current platform is bun.
     */
    readonly isBun: boolean;
    /**
     * Whether the current platform is nw.js.
     */
    readonly isNw: boolean;
    /**
     * Whether the current platform is electron.
     */
    readonly isElectron: boolean;
}
export declare const platformInfo: PlatformInfo;
export {};
//# sourceMappingURL=main.d.ts.map