import type { Snippet } from 'svelte';
interface Props {
    text: string;
    updatedDate?: string;
    publishedText?: string;
    actionsTakenByMattilsynet?: string;
    statusType: 'important' | 'none';
    linkUrl: string;
    linkText: string;
    class?: string;
    lang?: string;
    heading?: Snippet;
}
declare const Status: import("svelte").Component<Props, {}, "">;
type Status = ReturnType<typeof Status>;
export default Status;
