declare const staticExports: {
    staticStrUndefined: string;
    staticStrLast: string;
    staticStrFirst: string;
    staticDayTime: number;
    staticWeekTime: number;
    staticLocation: number | Location;
    staticWindow: number | (Window & typeof globalThis);
    staticDocument: number | Document;
    staticEncodeURIComponent: typeof encodeURIComponent;
    staticDecodeURIComponent: typeof decodeURIComponent;
    staticObjectToString: () => string;
    staticParseInt: (string: string, radix?: number | undefined) => number;
    staticEscapeMap: {
        '&': string;
        '<': string;
        '>': string;
        '"': string;
        '\'': string;
        '`': string;
    };
    staticHGKeyRE: RegExp;
};
export default staticExports;
