export interface GetUrlParamProps { /** The name of the parameter to extract (e.g., 'id' or 'category') */ paramName: string; /** What to return if the parameter isn't found */ fallback?: any; } export default function GetUrlParam({ paramName, fallback }: GetUrlParamProps): any;