import type { TopListProps } from './types/top-list.js'; import type { XYChartRef } from '../xy-chart/types/xy-chart.js'; export type { TopListProps }; /** * A horizontal ranked-bar chart with labels inside bars and a hidden numerical * axis, implemented as a wrapper around XYChart. When the list has more items * than fit in `height`, the viewport becomes scrollable. * @public */ export declare const TopList: (props: TopListProps & import("react").RefAttributes) => import("react").ReactElement | null;