import { PropsWithChildren } from 'react';
export interface GridCardProps {
    title: string;
    subtitle?: string;
    buttonCaption?: string;
    buttonTarget?: string;
    img?: string;
    imgAlt?: string;
    light?: boolean;
    icon?: React.ReactNode;
    className?: string;
}
export declare function GridCard({ title, subtitle, children, buttonCaption, buttonTarget, img, imgAlt, light, icon, className, }: PropsWithChildren<GridCardProps>): import("react/jsx-runtime").JSX.Element;
