export type SupportItemLink = { url: string; title: string; }; export type SupportItem = { title: string; icon?: string; links: SupportItemLink[]; }; export type SupportConfig = { url: string; items: SupportItem[]; }; export declare function useSupportConfig(): SupportConfig;