import { TouchableOpacityProps, ViewProps } from "react-native"; import { Color } from "../../types"; export interface BackButtonProps { color?: Color; hitSlop?: ViewProps["hitSlop"]; onPress?: () => void; showX?: boolean; style?: TouchableOpacityProps["style"]; iconSize?: number; } export declare const BackButton: React.FC; export declare const BackButtonWithBackground: React.FC;