import { type ReactNode } from "react"; export interface IKdaAttributesSelectItemProps { item: T; title: string; isSelected: boolean; focusedAction?: string; index?: number; onSelect: () => void; onDeselect: () => void; onSelectOnly: () => void; right?: ReactNode; } export declare function KdaAttributesSelectItem({ item, title, isSelected, focusedAction, index, onSelect, onDeselect, onSelectOnly, right }: IKdaAttributesSelectItemProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=KdaAttributesSelectItem.d.ts.map