import type { ThemeName } from './index'; /** * Custom getThemeName function * * At runtime, it gets the correct theme from the `document` * * It replys on `document` `data-attributes` as primary mechanism, * ans `sessionStoryage` as a backup mechanism. * * It works in conjunction with Custom setThemeName from `@lendi/ui` * * @deprecated Deprecated since 0.2.3. Use SC's Theme instead. */ export declare const getThemeName: () => ThemeName; export default getThemeName;