import type React from "react"; import type { ComponentVariant } from "../NDSProvider/ComponentVariantContext"; type RangeContainerProps = { labelProps?: any; startComponent?: React.ReactNode; endComponent?: React.ReactNode; variant?: ComponentVariant; errorMessages?: (string | undefined)[]; children?: React.ReactNode; }; declare const RangeContainer: ({ startComponent, endComponent, errorMessages, labelProps, variant, ...props }: RangeContainerProps) => import("react/jsx-runtime").JSX.Element; export default RangeContainer;