/**
 * Hook to access URL parameters.
 * This is a router-agnostic wrapper that uses the configured router provider.
 *
 * @example
 * const params = useParams<{ id: string }>();
 * console.log(params.id);
 */
export declare const useParams: <T extends Record<string, string | undefined> = Record<string, string | undefined>>() => T;
//# sourceMappingURL=useParams.d.ts.map