import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { input: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type TextCountryProps = typeof __propDef.props; export type TextCountryEvents = typeof __propDef.events; export type TextCountrySlots = typeof __propDef.slots; export default class TextCountry extends SvelteComponentTyped { } export {};