export const Transitions: string[]; export namespace Props { export const key: null; export namespace _in { export const type: ArrayConstructor; const _default: never[]; export { _default as default }; } export { _in as in }; export namespace out { const type_1: ArrayConstructor; export { type_1 as type }; const _default_1: never[]; export { _default_1 as default }; } } /** @typedef {typeof __propDef.props} TransitionProps */ /** @typedef {typeof __propDef.events} TransitionEvents */ /** @typedef {typeof __propDef.slots} TransitionSlots */ export default class Transition extends SvelteComponentTyped<{ key: any; in?: any[] | undefined; out?: any[] | undefined; }, { [evt: string]: CustomEvent; }, { default: {}; }> { } export type TransitionProps = typeof __propDef.props; export type TransitionEvents = typeof __propDef.events; export type TransitionSlots = typeof __propDef.slots; import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { key: any; in?: any[] | undefined; out?: any[] | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export {};