/** @typedef {typeof __propDef.props} ApertureProps */ /** @typedef {typeof __propDef.events} ApertureEvents */ /** @typedef {typeof __propDef.slots} ApertureSlots */ export default class Aperture extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type ApertureProps = typeof __propDef.props export type ApertureEvents = typeof __propDef.events export type ApertureSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}