import GymInterpolateMenu from './GymInterpolateMenu.svelte'; interface GymTextboxProps { props: Record; name: string; label?: string; hideExtra?: boolean; multiline?: boolean; interpMenu?: GymInterpolateMenu; subLabel?: string; fallback?: any; } declare const GymTextbox: import("svelte").Component; type GymTextbox = ReturnType; export default GymTextbox;