/** * Returns the current screen's route params, typed via the generic parameter. * Must be used within a ScreenProvider. * * @returns The route params object. * @throws If used outside a screen component. * * @example * ```ts * const { id } = useParams<{ id: string }>(); * ``` */ export declare function useParams = Record>(): T; //# sourceMappingURL=useParams.d.ts.map