import { IkasBlog } from "../../../storefront-models/src"; /** * Returns the storefront-relative URL path for a blog post based on its metadata slug. * * @ai-category Blog * @ai-related getIkasBlogFormattedDate * * @param blog - The blog object containing metadata with a slug used to build the href. * @returns The prefixed blog URL path, or an empty string if the slug is missing. * * @example * ```typescript * import { getIkasBlogHref } from "@ikas/bp-storefront"; * const href = getIkasBlogHref(blog); * // e.g. "/blog/my-first-post" * ``` */ export declare function getIkasBlogHref(blog: IkasBlog): string; /** * Formats the creation date of a blog post into a human-readable string. * * @ai-category Blog * @ai-related getIkasBlogHref * * @param blog - The blog object whose createdAt timestamp will be formatted. * @returns A formatted date string representing when the blog post was created. * * @example * ```typescript * import { getIkasBlogFormattedDate } from "@ikas/bp-storefront"; * const dateStr = getIkasBlogFormattedDate(blog); * // e.g. "January 15, 2025" * ``` */ export declare function getIkasBlogFormattedDate(blog: IkasBlog): string;