import HdgElement from "@hdgd/core"; import "@hdgd/icons/lib/arrow-right"; export interface Props { title: string; desc?: string; to?: string; islink?: boolean; icon?: string; } declare class HdgCell extends HdgElement { title: string; icon: string; desc: string; to: string; islink: boolean; handleNavigation: () => void; renderIcon: () => any; render(): any; } export default HdgCell; declare class HdgCellGroup extends HdgElement { render(): any; } export { HdgCellGroup };