@mattilsynet/designsystem-svelte
Version:
Design system for Mattilsynet
13 lines (12 loc) • 346 B
TypeScript
interface Props {
publishFrom?: string;
professionallyUpdated?: string;
lang?: string;
publishedText?: string;
lastPublishedText?: string;
dtClass?: string;
ddClass?: string;
}
declare const Published: import("svelte").Component<Props, {}, "">;
type Published = ReturnType<typeof Published>;
export default Published;