import React from 'react';
import { ViewStyle } from 'react-native';
export interface SeparatorInterface {
    backgroundColor?: ViewStyle['backgroundColor'];
    tintColor?: ViewStyle['backgroundColor'];
    isHidden?: boolean;
    insetLeft?: ViewStyle['marginLeft'];
    insetRight?: ViewStyle['marginRight'];
    withSafeAreaView?: boolean;
}
declare const Separator: React.FC<SeparatorInterface>;
export default Separator;
