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