import { BeatEditorDefinition } from './types'; /** * The editors this package ships. Order matters only within a beat type: the first one for a * type is what a host opens by default. */ export declare const defaultBeatEditors: BeatEditorDefinition[]; /** Every editor registered for a beat type, in registration order. */ export declare const editorsFor: (beatType: string, editors?: BeatEditorDefinition[]) => BeatEditorDefinition[];