import React from "react"; import { type InfixKind } from "./Slider.types"; import type VibeComponentProps from "../../types/VibeComponentProps"; export interface SelectionIndicatorProps extends VibeComponentProps { /** * Determines whether the selection indicator is a prefix or postfix. */ kind?: InfixKind; /** * The key for the selection indicator (used for React key uniqueness). */ key?: InfixKind; } declare const SelectionIndicator: React.FC; export default SelectionIndicator;