import React from 'react'; import type { SemanticClassFn, SemanticStyleFn } from '../common/use-semantic'; import type { CardSemanticKey } from './card.type'; export interface CardContextValue { collapsed?: boolean; onCollapse: () => void; collapsible?: 'bottom' | boolean; handleDragMouseDown?: (e: React.MouseEvent) => void; semClass?: SemanticClassFn; semStyle?: SemanticStyleFn; } export declare const CardContext: React.Context; //# sourceMappingURL=card.context.d.ts.map