import { ComponentProps, FC } from "react";
import MaterialCommunityIcons from "react-native-vector-icons/MaterialCommunityIcons";
type Props = {
    name: ComponentProps<typeof MaterialCommunityIcons>["name"];
    onPress: () => void;
};
declare const Chevron: FC<Props>;
export default Chevron;
