import React from 'react';
import { GestureResponderEvent } from 'react-native';
export interface ActionSheetItemProps {
    onPress?: (event: GestureResponderEvent) => void;
}
export interface ActionSheetItemState {
}
export default class ActionSheetItem extends React.Component<ActionSheetItemProps, ActionSheetItemState> {
    render(): JSX.Element;
}
