import { ReactNode } from 'react';
export interface DotScopeProps {
    index: number;
    active: boolean;
    forId: string;
    children: ReactNode;
}
export default function DotScope({ index, active, forId, children, }: DotScopeProps): import("react/jsx-runtime").JSX.Element;
