/** @typedef {typeof __propDef.props} CameraProps */ /** @typedef {typeof __propDef.events} CameraEvents */ /** @typedef {typeof __propDef.slots} CameraSlots */ export default class Camera extends SvelteComponentTyped<{ size?: string; color?: string; strokeWidth?: string; class?: string; }, { [evt: string]: CustomEvent; }, {}> { } export type CameraProps = typeof __propDef.props; export type CameraEvents = typeof __propDef.events; export type CameraSlots = 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 {};