import { Component } from 'solid-js'; interface PlanetaryInputProps { onSubmit: (data: { planetaryPositions: string; ascendant: string; ayanamsa: string; }) => void; } declare const PlanetaryInput: Component; export default PlanetaryInput;