import HdgElement from "@hdgd/core"; export interface Props { column?: number; noborder?: boolean; square?: boolean; } export interface ItemProps { text?: string; icon?: string; iconsize?: string; } declare class HdgGridItem extends HdgElement { text: string; icon: string; iconsize: string | undefined; style: any; setStyle: (style: any) => void; renderIcon: () => any; render(): any; } export { HdgGridItem }; declare class HdgGrid extends HdgElement { column: string; noborder: boolean; square: boolean; slotRef: any; getNodeStyle: (index: number) => { width: string; height: string; borderRight: string; borderBottom: string; }; handleSlotChange: () => void; render(): any; } export default HdgGrid;