import type { ILink } from './link.js';
export interface ILinkBlock {
    title: string;
    links: ILink[];
}
