import type { NavBrand } from './index.d.ts';
import type { SvelteHTMLElements } from 'svelte/elements';
type Props = Omit<SvelteHTMLElements['a'], 'class'> & {
    class?: ClassName;
    brand?: NavBrand;
};
declare const NavHome: import("svelte").Component<Props, {}, "">;
type NavHome = ReturnType<typeof NavHome>;
export default NavHome;
