import React from 'react';
import { StyleProp, TouchableOpacityProps, ViewStyle } from 'react-native';
interface TVTouchableFeedbackProps extends TouchableOpacityProps {
    focusStyles?: StyleProp<ViewStyle>;
}
interface TVTouchableFeedbackState {
    focused: boolean;
}
export default class TVTouchableFeedback extends React.Component<TVTouchableFeedbackProps, TVTouchableFeedbackState> {
    state: {
        focused: boolean;
    };
    onFocus: () => void;
    onBlur: () => void;
    onPress: (event: any) => void;
    render(): JSX.Element;
}
export {};
