import * as react_jsx_runtime from 'react/jsx-runtime';
import { StaticImageData } from 'next/image';

interface GraphQLConfCardProps {
    image: StaticImageData;
    href?: string;
    title?: string;
    details?: string;
    description?: string;
    callToAction?: string;
}
declare function GraphQLConfCard({ image, href, title, details, description, callToAction, }: GraphQLConfCardProps): react_jsx_runtime.JSX.Element;

export { GraphQLConfCard, type GraphQLConfCardProps };
