export declare const DURATION_BAR_COLOR: readonly ["accent", "primary", "danger", "warning", "success", "neutral", "subdued", "medium"];
type Props = {
    window: number;
    start: number;
    end: number;
    color: (typeof DURATION_BAR_COLOR)[number];
    minBarWidthPx?: number;
    className?: string;
};
export declare const VuiDurationBar: ({ window, start, end, color, minBarWidthPx, className }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
