export default getTrackConfFromHGC;
/**
 * Get a track's config (not the track object) from a higlass component.
 *
 * @param  {HiGlassComponent} hgc      HiGlassComponent object
 * @param  {string} viewUid  The uid of the view
 * @param  {string} trackUid The uid of the track
 * @return {object}          Track conf if found else null
 */
declare function getTrackConfFromHGC(hgc: HiGlassComponent, viewUid: string, trackUid: string): object;
