/** @typedef {typeof __propDef.props} PhotoIconProps */ /** @typedef {typeof __propDef.events} PhotoIconEvents */ /** @typedef {typeof __propDef.slots} PhotoIconSlots */ export default class PhotoIcon extends SvelteComponentTyped<{ [x: string]: any; }, { [evt: string]: CustomEvent; }, {}> { } export type PhotoIconProps = typeof __propDef.props; export type PhotoIconEvents = typeof __propDef.events; export type PhotoIconSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { [x: string]: any; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export {};