export interface RangeSkeletonProps { count?: number; } /** * Loading placeholder for the Range widget. Renders `count` rows, each * matching the slider-then-inputs layout of {@link RangeUI} so the layout * doesn't jump when data resolves. */ export declare function RangeSkeleton({ count }: RangeSkeletonProps): import("react/jsx-runtime").JSX.Element;