import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { onclick: () => void; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type LaunchSearchProps = typeof __propDef.props; export type LaunchSearchEvents = typeof __propDef.events; export type LaunchSearchSlots = typeof __propDef.slots; export default class LaunchSearch extends SvelteComponentTyped { } export {};