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 TextCopyProps = typeof __propDef.props; export type TextCopyEvents = typeof __propDef.events; export type TextCopySlots = typeof __propDef.slots; export default class TextCopy extends SvelteComponentTyped { } export {};