/** * Inline script that runs before page render to prevent flash * This script is injected into the head and executes immediately */ declare function getInlineScript(attribute: string | string[], storageKey: string, defaultTheme: string, forcedTheme: string | undefined, themes: string[], value: Record | undefined, enableSystem: boolean, enableColorScheme: boolean): string; /** * Returns a minified version of the inline script */ declare function getMinifiedInlineScript(attribute: string | string[], storageKey: string, defaultTheme: string, forcedTheme: string | undefined, themes: string[], value: Record | undefined, enableSystem: boolean, enableColorScheme: boolean): string; export { getInlineScript, getMinifiedInlineScript };