import { ReactNode, FC } from "react";
declare type Props = {
    children: ReactNode;
    x: number;
    y: number;
    scatterRandomly: boolean;
};
declare const Child: FC<Props>;
export default Child;
//# sourceMappingURL=Child.d.ts.map