export default class Legacy { /** * Navigates to a specified url * @param {string} url A url to be routed to */ navigate(url: string): void; /** * Selects a specific country based on the country's name * @param {string} */ selectCountry(country: string): void; /** * Selects a specific state based on the state's name * @param {string} */ selectState(state: string): void; submit(): void; /** * Logs a text */ log(): void; }