import type { ComponentInstance, Params, Props, RouteData } from '../../@types/astro'; import type { LogOptions } from '../logger/core.js'; import { RouteCache } from './route-cache.js'; interface GetParamsAndPropsOptions { mod: ComponentInstance; route?: RouteData | undefined; routeCache: RouteCache; pathname: string; logging: LogOptions; ssr: boolean; } export declare function getParamsAndProps(opts: GetParamsAndPropsOptions): Promise<[Params, Props]>; export {};