import { WorldArgs } from './types'; export declare const ScoreComp: import("@chantey/ecs").Component<{ value: number; }>; export declare const ScoreQuery: import("@chantey/ecs").Query<{ ScoreComp: { value: number; }; }>; export declare const createScoreSystem: ({ world }: WorldArgs) => { start: () => void; stop: () => void; update: () => void; }; export declare type iScoreSystem = ReturnType;