import * as React from "react"; import { ThemeProps } from "../../theme"; export interface SegmentMarkerProps extends ThemeProps { mark: { segmentId: string; agentName: string; offset: number; segmentStart: boolean; }; onClick: (segmentId: string) => void; } export declare const SegmentMarker: React.FC & { theme?: import("@emotion/react").Theme; }>;