type $$ComponentProps = {
    src: string;
    alt: string;
    title: string;
    description?: string;
    href?: string;
    onclick?: () => void;
    class?: string;
};
declare const ImageCard: import("svelte").Component<$$ComponentProps, {}, "">;
type ImageCard = ReturnType<typeof ImageCard>;
export default ImageCard;
