/// import { IWebApp } from "edifice-ts-client"; import { CardProps } from "./Card"; export interface CardContextProps extends Omit { app?: IWebApp | undefined; appCode: string | undefined; isSelectable?: boolean; isClickable?: boolean; onClick?: () => void; onSelect?: () => void; } export declare const CardContext: import("react").Context; export declare const useCardContext: () => CardContextProps;