UNPKG

@hhgtech/hhg-components

Version:
10 lines (9 loc) 360 B
import React from 'react'; import { Specialty } from "../../../../interfaces/types"; interface ItemProps extends React.ComponentPropsWithoutRef<'div'> { label: string; value: string; specialty: Specialty; } export declare const CustomSelectItem: React.ForwardRefExoticComponent<ItemProps & React.RefAttributes<HTMLDivElement>>; export {};