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