7 lines
225 B
TypeScript
7 lines
225 B
TypeScript
import type { ComputedRef } from 'vue';
|
|
import type { NavbarItem } from '../typings.js';
|
|
/**
|
|
* Get navbar config of select language dropdown
|
|
*/
|
|
export declare const useNavbarSelectLanguage: () => ComputedRef<NavbarItem[]>;
|