/** @typedef {typeof __propDef.props} FilmProps */ /** @typedef {typeof __propDef.events} FilmEvents */ /** @typedef {typeof __propDef.slots} FilmSlots */ export default class Film extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type FilmProps = typeof __propDef.props; export type FilmEvents = typeof __propDef.events; export type FilmSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { size?: string; color?: string; strokeWidth?: string; class?: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};