import { FC } from 'react'; export interface UrlInputProps { value: string; onChange: (url: string, isValid: boolean) => void; } declare const UrlInput: FC; export default UrlInput;