import { ReactNode, FC } from "react";
declare type Props = {
    children: ReactNode;
    initDeg: number;
    velocity: number;
    radius: number;
    backgroundColors: {
        earth: string;
        solarSystem: string;
        buffer: string;
    };
    direction: "clockwise" | "counterclockwise";
};
declare const Motion: FC<Props>;
export default Motion;
//# sourceMappingURL=Motion.d.ts.map