import React from 'react'; import { IComponentBaseProps } from '../types'; export type IndicatorItemProps = React.HTMLAttributes & IComponentBaseProps & { horizontal?: 'start' | 'center' | 'end'; vertical?: 'top' | 'middle' | 'bottom'; }; declare const _default: React.ForwardRefExoticComponent & IComponentBaseProps & { horizontal?: "start" | "center" | "end" | undefined; vertical?: "top" | "middle" | "bottom" | undefined; } & React.RefAttributes> & { className: ({ className, horizontal, vertical, }?: Pick) => string; }; export default _default;