///
import './MultiSliderOutput.scss';
import type { ValidationResult } from 'react-aria-components';
export type MultiSliderOutputProps = {
colors: string[];
breakValues: number[];
children?: React.ReactNode;
label?: string;
description?: string;
errorMessage?: string | ((validation: ValidationResult) => string);
disabled?: boolean;
};
/**
* MultiSliderOutput component that renders a series of color blocks representing break values.
*
* @param {Object} props - The properties passed to the component.
* @param {Array} props.colors - An array of color values for each block.
* @param {Array} props.breakValues - An array of break values determining the width of each block.
*
* @returns {JSX.Element|null} The rendered MultiSliderOutput component with color blocks, or null if required props are missing.
*
* @example
* // Example usage of MultiSliderOutput
*
*/
export declare const MultiSliderOutput: (props: MultiSliderOutputProps) => import("react/jsx-runtime").JSX.Element;
export default MultiSliderOutput;