interface Issue {
    title?: string;
    text?: string;
    href?: string;
}
interface Props {
    title?: string;
    headingClass?: string;
    headerTag?: 'h2' | 'h3' | 'h4';
    issues?: Issue[];
}
declare const CurrentIssues: import("svelte").Component<Props, {}, "">;
type CurrentIssues = ReturnType<typeof CurrentIssues>;
export default CurrentIssues;
