@brave/swap-interface
Version:
Brave Swap - an open-source swap interface by Brave, focussed on usability and multi-chain support.
10 lines (9 loc) • 386 B
TypeScript
import { RefreshBlockchainStateParams } from '../../constants/types';
interface Props {
onSearchChanged: (value: string) => void;
searchValue: string;
networkSelectorDisabled: boolean;
refreshBlockchainState: (overrides: Partial<RefreshBlockchainStateParams>) => Promise<void>;
}
export declare const SearchWithNetworkSelector: (props: Props) => JSX.Element;
export {};