Files
eewing ec317eb17c
CI / build (push) Has been skipped
CI / deploy (push) Successful in 1m11s
INIT
2026-02-18 15:17:47 -06:00

9 lines
369 B
TypeScript

import type { ScrollAreaThumbProps } from "../types.js";
type $$ComponentProps = Omit<ScrollAreaThumbProps, "forceMount" | "id"> & {
id: string;
present: boolean;
};
declare const ScrollAreaThumbImpl: import("svelte").Component<$$ComponentProps, {}, "ref">;
type ScrollAreaThumbImpl = ReturnType<typeof ScrollAreaThumbImpl>;
export default ScrollAreaThumbImpl;