import React from "react"; import { Item } from "microboard-temp"; interface Props { item: Item; handleClick: (item: Item) => void; } export declare const LinkToButton: ({ item, handleClick, }: Props) => React.JSX.Element; export {};