interface Props {
    href?: string;
    title?: string;
    text?: string;
}
declare const Image: import("svelte").Component<Props, {}, "">;
type Image = ReturnType<typeof Image>;
export default Image;
