import { ContentTemplate } from '../types/Templates'; /** * @experimental * Hook to fetch content card UI for a given surface via `Messaging.getContentCardUI`. * @param surface - The surface to fetch the content card UI for. * @returns An object containing the content card UI, error, loading state, and a refetch function. */ export declare const useContentCardUI: (surface: string) => { content: ContentTemplate[]; error: any; isLoading: boolean; refetch: () => Promise; }; //# sourceMappingURL=useContentCardUI.d.ts.map