export interface ItemProps { name: string; image?: string; label?: string; large?: boolean; } export declare function Item(props: ItemProps): import("react/jsx-runtime").JSX.Element;