interface Props { /** The published date of the post. */ publishedDate?: string; /** The heading of the post. */ hed?: 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; /** The ARIA label for the copy link button. */ ariaLabel?: string; /** The message to display before copying the link. */ copyMessageBefore?: string; /** The message to display after copying the link. */ copyMessageAfter?: string; } declare const CopyLink: import("svelte").Component; type CopyLink = ReturnType; export default CopyLink;