import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { input: string; btnClass?: string | undefined; iconSize?: string | undefined; iconColor?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type TextPhoneProps = typeof __propDef.props; export type TextPhoneEvents = typeof __propDef.events; export type TextPhoneSlots = typeof __propDef.slots; export default class TextPhone extends SvelteComponentTyped { } export {};