import { SvelteComponentTyped } from "svelte"; import { LoadingContainerProps } from "../types"; declare const __propDef: { props: { isBusy: LoadingContainerProps["isBusy"]; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type IndexProps = typeof __propDef.props; export type IndexEvents = typeof __propDef.events; export type IndexSlots = typeof __propDef.slots; export default class Index extends SvelteComponentTyped { } export {};