import React from "react";
import { CardProps } from "./Card.types";
export declare const Card: React.ForwardRefExoticComponent<{
    children: React.ReactNode;
    shadow?: import("@mantine/core").MantineShadow | undefined;
    withBorder?: boolean | undefined;
    p?: import("@mantine/core").MantineNumberSize | undefined;
    radius?: import("@mantine/core").MantineNumberSize | undefined;
    sx?: import("@mantine/core").CSSObject | undefined;
} & import("../layout/layout.types").CommonLayoutProps & import("../styling.types").CommonStylingProps & React.RefAttributes<HTMLDivElement>>;
export declare const CardWithoutRef: ({ children, withBorder, p, radius, className, style, width, height, grow, ...props }: CardProps & {
    innerRef: React.Ref<HTMLDivElement>;
}) => import("react/jsx-runtime").JSX.Element;
