import React from 'react'; import { IndicatorProps } from './types'; declare const PageIndicator: { ({ bgColor, borderColor, children, color, element, fontFamily, fontSize, height, href, mt, mr, mb, ml, radius, width }: IndicatorProps): React.JSX.Element; defaultProps: { bgColor: string; borderColor: string; color: string; element: string; fontFamily: string; fontSize: string; height: string; mr: number; mb: number; radius: string; width: string; }; }; export { PageIndicator };