import React from "react"; interface NavigationSearchProps { value: string; onChange: (value: string) => void; onSubmit: () => void; onCancel: () => void; } declare function NavigationSearch({ value, onChange, onSubmit, onCancel, }: NavigationSearchProps): React.JSX.Element; export default NavigationSearch;