/// <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>;
