export interface UseChatCardItemResult { item: T | undefined; isLoading: boolean; isError: boolean; /** True only after a fetch actually completed — false for disabled * queries (no list URL for the type / empty id). */ isFetched: boolean; } export declare function useChatCardItem(type: string, id: string): UseChatCardItemResult; //# sourceMappingURL=use-chat-card-item.d.ts.map