/// declare type SmallBoxId = string; export interface SmallBox { id: SmallBoxId; name: string; href?: string; } export interface SmallBoxListProps { selected?: SmallBoxId; boxes: SmallBox[]; type?: 'normal' | 'purple'; component?: 'button' | 'link'; onSelect?: (id: SmallBoxId) => void; } declare const SmallBoxList: ({ selected, boxes, type, onSelect, component, }: SmallBoxListProps) => JSX.Element; export default SmallBoxList;