5 lines
246 B
TypeScript
5 lines
246 B
TypeScript
import type { SliderThumbLabelProps } from "../types.js";
|
|
declare const SliderThumbLabel: import("svelte").Component<SliderThumbLabelProps, {}, "ref">;
|
|
type SliderThumbLabel = ReturnType<typeof SliderThumbLabel>;
|
|
export default SliderThumbLabel;
|