type TouchWithId = {
    id?: number;
};
export type ChartPressBootstrapEntry<TState, TTouch extends TouchWithId> = {
    pressIndex: number;
    state: TState;
    touch: TTouch;
};
export declare const pruneChartPressBootstrap: <TState, TTouch extends TouchWithId>({ bootstrap, changedTouches, numberOfTouches, }: {
    bootstrap: ChartPressBootstrapEntry<TState, TTouch>[];
    changedTouches: readonly TouchWithId[];
    numberOfTouches?: number;
}) => ChartPressBootstrapEntry<TState, TTouch>[];
export {};
