import { FunctionComponent } from "react"; import { ImageSourcePropType } from "react-native"; interface IProps { icon: ImageSourcePropType; isActive: boolean; onPress: () => void; } export declare const WebviewIcon: FunctionComponent; export {};