import type { RouteParams } from './types.js'; export interface SignedUrlOptions { secret: string; expiresAt?: number; query?: Record; } export declare function signRouteUrl(url: string, options: SignedUrlOptions): string; export declare function verifySignedRouteUrl(pathname: string, searchParams: URLSearchParams, secret: string): boolean; export declare function temporarySignedRouteParams(ttlSeconds: number): Pick; export type { RouteParams }; //# sourceMappingURL=signed-url.d.ts.map