import type { Snippet } from "svelte";
interface Props {
    index: number;
    active: boolean;
    forId: string;
    children: Snippet<[{
        index: number;
        active: boolean;
    }]>;
}
declare const DotScope: import("svelte").Component<Props, {}, "">;
type DotScope = ReturnType<typeof DotScope>;
export default DotScope;
