import Component from '../../components/sample-component/sample-component.js'; /** * SAMPLE COMPONENT * * @summary A simple slider component that displays the current value. * @documentation https://webawesome.com/docs/components/sample-component * @status experimental * @since 3.0 * * @tag wa-sample-component * * @csspart base - The component's root container. * * @prop {number} value - The current value of the slider. * @prop {number} min - The minimum value selectable. * @prop {number} max - The maximum value selectable. * * @example * ```html * * ``` */ declare const reactWrapper: import("@lit/react").ReactWebComponent; export default reactWrapper;