UNPKG

@daks.dev/svelte.sdk

Version:
30 lines (29 loc) 1.11 kB
import type { Custom } from './index.d.ts'; interface $$__sveltets_2_IsomorphicComponent<Props extends Record<string, any> = any, Events extends Record<string, any> = any, Slots extends Record<string, any> = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions<Props>): import('svelte').SvelteComponent<Props, Events, Slots> & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const CarouselKit: $$__sveltets_2_IsomorphicComponent<{ [x: string]: any; class?: ClassName; custom?: Partial<Custom> | undefined; alt?: string | undefined; dataset: ImageMetainfo[]; grayscale?: boolean | undefined; invert?: boolean | undefined; native?: boolean | undefined; check?: boolean | undefined; }, { [evt: string]: CustomEvent<any>; }, {}, {}, string>; type CarouselKit = InstanceType<typeof CarouselKit>; export default CarouselKit;