import type { Icon } from 'tabler-icons-react'; type targetType = '_blank' | '_self' | '_parent'; interface LinkProps { icon: Icon; text: string; href: string; active: boolean; target?: targetType; } export declare function Link(props: LinkProps): import("react/jsx-runtime").JSX.Element; export declare namespace Link { var defaultProps: { active: boolean; }; } export {};