import { default as Color } from 'color'; import { TimeframeTickWithMetaData } from '@zeniai/client-epic-state'; export interface Props { height: number; isAccountColumnShown: boolean; isClassColumnShown: boolean; isSticky: boolean; timeframeTicks: TimeframeTickWithMetaData[]; backgroundColor?: Color; } export default function NoResultsFoundTitleRow({ backgroundColor, isSticky, height, isAccountColumnShown, isClassColumnShown, timeframeTicks, }: Props): import("react/jsx-runtime").JSX.Element;