import { PureComponent } from "react"; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; import { ColorsTypes } from "../../interfaces/types/ColorsTypes"; export interface BulletInterfaceProps extends PropsInterface { type: ColorsTypes; } export declare class Bullet extends PureComponent { constructor(props: any); render(): JSX.Element; }