import type { Base, Title } from '@/components/types'; export interface QuickEntranceProps extends Base, Title { quickEntranceList?: LinkInfo[]; itemLayout?: string; } export interface LinkInfo { name: string; linkUrl: string; icon: string; linkType: LinkType; sort: number; key: string; extra: any; openType: OpenType; } export declare enum LinkType { INTERNAL = "0", EXTERNAL = "1" } export declare enum OpenType { BLANK = "_blank", SELF = "_self" }