interface Props { /** Headline of the blog post */ hed: string; /** * A sluggable headline of the blog post. * * **Important:** Do not change this headline after publishing the post. Changes will break * published links to the post. */ sluggableHed: string; /** * SvelteKit's `resolve` function from `$app/paths`, used to build the copied URL * against your project's base path. Defaults to an identity function. */ resolve?(pathname: string): string; /** Array of author names, which will be slugified to create links to Reuters author pages */ authors: string[]; /** Publish time as a datetime string. */ publishTime: string; /** Update time as a datetime string. */ updateTime?: string; /** Add an id to target with custom CSS. */ id?: string; /** Add extra classes to target with custom CSS. */ cls?: string; } declare const PostHeadline: import("svelte").Component; type PostHeadline = ReturnType; export default PostHeadline;