import { type ComputedRef } from 'vue'; export type CardContext = { isLoading: boolean; }; export declare const useCard: () => { context: ComputedRef; };