import { type Component, type Snippet } from 'svelte';
type $$ComponentProps = {
    label: string;
    href: string;
    labelIcon: Component | Snippet;
};
declare const UserButtonLink: Component<$$ComponentProps, {}, "">;
type UserButtonLink = ReturnType<typeof UserButtonLink>;
export default UserButtonLink;
