export declare const arkUtilVersion = "0.56.0";
export declare const initialRegistryContents: {
    version: string;
    filename: string;
    FileConstructor: typeof import("buffer").File;
};
export type InitialRegistryContents = typeof initialRegistryContents;
export interface ArkRegistry extends InitialRegistryContents {
    [k: string]: unknown;
}
export declare const registry: ArkRegistry;
declare global {
    export interface ArkEnv {
        prototypes(): never;
    }
    export namespace ArkEnv {
        type prototypes = ReturnType<ArkEnv["prototypes"]>;
    }
}
export declare const register: (value: object | symbol) => string;
export declare const isDotAccessible: (keyName: string) => boolean;
