interface GymDropdownProps { props: Record; name: string; options: any[] | Record; label?: string; hideExtra?: boolean; optLabel?: string; optValue?: string; } declare const GymDropdown: import("svelte").Component; type GymDropdown = ReturnType; export default GymDropdown;