import { EventName } from '@lit/react'; import { AgSlider, SliderProps } from '../core/Slider'; import * as React from 'react'; /** * React-specific props for Slider * * Following AgnosticUI v2 event conventions: * - Custom events (input, change) are mapped in the events object * - Native events (focus, blur) work automatically via callback props */ export interface ReactSliderProps extends SliderProps { children?: React.ReactNode; className?: string; id?: string; } export declare const ReactSlider: import('@lit/react').ReactWebComponent>; onChange: EventName>; }>; //# sourceMappingURL=ReactSlider.d.ts.map