UNPKG

@hhgtech/hhg-components

Version:
12 lines (11 loc) 380 B
/// <reference types="react" /> import { VarianStyle } from "./index.types"; export type BaseProps = { isPregTool?: boolean; variant?: VarianStyle; hasBodyScroll?: boolean; }; export type CardWrapperContextType = { classes: Record<string, string>; } & BaseProps; export declare const CardWrapperContext: import("react").Context<CardWrapperContextType>;