interface Props {
    linkText: any;
    href: any;
    class?: string;
    style?: string;
    linkStyle?: 'mt-link' | 'mt-button';
    fileName?: string;
}
declare const Link: import("svelte").Component<Props, {}, "">;
type Link = ReturnType<typeof Link>;
export default Link;
