import { ViewProps } from "@vnxjs/components/types/View";
import { ReactNode } from "react";
export interface SwiperIndicatorProps extends ViewProps {
className?: string;
children?: ReactNode;
}
export default function SwiperIndicator(props: SwiperIndicatorProps): JSX.Element;