import type { PropType } from 'vue'; import type { RouteParams, RouteParamsFormats, Routes } from '../common.ts'; /** * Parameters required for route navigation with proper type safety. */ export type LinkParams = RouteParams; /** * Type-safe Link component for Inertia.js navigation. * * Supports both route-based navigation with automatic URL resolution * and direct href navigation for maximum flexibility. * * @example * ```vue * * Users * View User * * * About * Logout * ``` */ export declare const Link: import("vue").DefineComponent; required: false; }; params: { type: PropType>; required: false; }; href: { type: StringConstructor; required: false; }; }>, () => import("vue").VNode, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly; required: false; }; params: { type: PropType>; required: false; }; href: { type: StringConstructor; required: false; }; }>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;