import intl from '@/locales' export interface Option { namespace: string public: boolean title: string desc?: string type: string default: any binds?: { [key: string]: any } depends?: (state: any) => boolean } export interface Options { [tag: string]: { title: string desc?: string icon: string options: Array