export type CardVariant = "1-slot" | "3-slot"; export type CardDirection = "vertical" | "horizontal"; export interface CardContextValue { orientation: CardDirection; variant: CardVariant; } export declare const CardContext: import('react').Context; export declare function useCardContext(): CardContextValue;