import React from "react"; import { InfixKind } from "./SliderConstants"; import VibeComponentProps from "../../types/VibeComponentProps"; export interface SelectionIndicatorProps extends VibeComponentProps { kind?: InfixKind; key?: InfixKind; } declare const SelectionIndicator: React.FC; export default SelectionIndicator;