/// import { VarianStyle } from "./index.types"; export type BaseProps = { isPregTool?: boolean; variant?: VarianStyle; hasBodyScroll?: boolean; }; export type CardWrapperContextType = { classes: Record; } & BaseProps; export declare const CardWrapperContext: import("react").Context;