import React from 'react';
import { StyleProp, ViewProps, ViewStyle } from 'react-native';
export interface RowProps extends ViewProps {
    onPress?: (event: any) => void;
    onDelete?: () => void;
    confirmingDelete?: boolean;
    rightAccessory?: (props: ViewProps) => React.ReactNode;
    disabled?: boolean;
    children?: any;
    showDelete?: boolean;
    isTop?: boolean;
    isBottom?: boolean;
    isSingle?: boolean;
    style?: StyleProp<ViewStyle>;
    rippleColor?: string;
    /** If true, content has no margins or padding. */
    fillContent?: boolean;
    contentContainerStyle?: StyleProp<ViewStyle>;
}
declare const Row: React.FC<RowProps>;
export default Row;
