import { BoxProps } from '@mantine/core'; interface VCardHeaderProps extends BoxProps { } declare function VCardHeader({ children, className, ...others }: React.PropsWithChildren): import("react/jsx-runtime").JSX.Element; interface VCardComponentProps extends BoxProps { withBorder?: boolean; withShadow?: boolean; variant?: 'default' | 'secondary'; } export declare function VCard({ children, withBorder, withShadow, className, mod, variant, ...others }: React.PropsWithChildren): import("react/jsx-runtime").JSX.Element; export declare namespace VCard { var Header: typeof VCardHeader; } export {};