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