@daks.dev/svelte.sdk
Version:
DAKS.DEV Svelte SDK
11 lines (10 loc) • 307 B
TypeScript
import type { Snippet } from 'svelte';
type Props = {
children?: Snippet;
title?: string;
subtitle?: string;
description?: string;
};
declare const LightboxModal: import("svelte").Component<Props, {}, "">;
type LightboxModal = ReturnType<typeof LightboxModal>;
export default LightboxModal;