import React, { Component } from 'react'; import { TracksProps } from './types'; import { OtherProps } from '../types'; export declare class Tracks extends Component { getTrackProps: (props?: OtherProps) => { onMouseDown: (e: React.MouseEvent) => void; onTouchStart: (e: React.TouchEvent) => void; }; render(): string | number | boolean | React.ReactElement> | React.ReactFragment | React.ReactPortal | null | undefined; }