import { Hitsound } from '../Enums/Hitsound';
import { IHitSample } from '../Interfaces/IHitSample';
export declare abstract class HitObject {
    x: number;
    y: number;
    hitsound: Hitsound;
    startTime: number;
    hitSample: IHitSample;
    constructor(x: number, y: number, startTime: number, hitsound: Hitsound, hitSample: IHitSample);
}
