import { FC, ReactNode } from "react"; declare type RepeatProps = { children: ReactNode; times?: number; interval?: number; }; export declare const Repeat: FC; export {};