export interface Props { height: number; isSticky: boolean; sectionTitle: string; tableType: "excluded" | "normal"; } export default function TimeframeRow({ sectionTitle, height, tableType, }: Readonly): import("react/jsx-runtime").JSX.Element;