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