import { type FC } from "react"; import { type VibeComponentProps } from "../../types"; import { type InfixKind } from "./Slider.types"; export interface SliderInfixProps extends VibeComponentProps { /** * Specifies the type of infix (prefix or postfix). */ kind?: InfixKind; } declare const SliderInfix: FC; export default SliderInfix;