import React from 'react';
export interface StarProps {
    x: number;
    y: number;
    autoplay?: boolean;
    color?: string;
}
export declare const Star: React.MemoExoticComponent<({ x, y, autoplay, color }: StarProps) => React.JSX.Element>;
