import React, { ReactNode } from "react"; import type { TimelineRowProps } from ".."; import { Period } from "./types.external"; type ParsedRow = { label: React.ReactNode; icon?: React.ReactNode; headingTag?: string; periods: Omit[]; restProps: Omit; ref?: React.Ref; }; export declare const parseRows: (rowChildren: ReactNode[]) => ParsedRow[]; export {};