declare module "*.css" { const css: string; export default css; } declare module "ehpeek:uno.css" { const css: string; export default css; } declare module "ehpeek:spectrum-ui-sizes" { type UiSizeScale = import("./ui").UiSizeScale; const sizes: { control: UiSizeScale; font: UiSizeScale; icon: UiSizeScale; space: UiSizeScale; radius: UiSizeScale; }; export default sizes; } declare const __EHPEEK_DEBUG__: boolean; declare const __EHPEEK_NAME__: string; declare const __EHPEEK_VERSION__: string; declare const GM_getValue: (key: string, defaultValue: T) => T; declare const GM_setValue: (key: string, value: T) => void; declare const GM_deleteValue: (key: string) => void; declare const GM_listValues: () => string[]; declare const GM_registerMenuCommand: | undefined | ((caption: string, commandFunc: () => void, accessKey?: string) => number | string); declare const GM_download: (details: { url: string; name?: string; onerror?: (error: { error: string; details?: string }) => void; }) => { abort: () => void };