import type { MinimalModel } from './types.ts';
import type { Source } from '../../util.ts';
import type { getFillProps } from '@jbrowse/core/util';
declare const LegendItemText: ({ source, idx, rowHeight, model, exportSVG, textFillProps, }: {
    source: Source;
    idx: number;
    rowHeight: number;
    model: MinimalModel;
    exportSVG?: boolean;
    textFillProps: ReturnType<typeof getFillProps>;
}) => import("react/jsx-runtime").JSX.Element | null;
export default LegendItemText;
