/** * Created by nghinv on Thu Mar 25 2021 * Copyright (c) 2021 nghinv@lumi.biz */ import React from 'react'; import { ViewStyle, StyleProp, ViewProps } from 'react-native'; export interface DividerProps extends ViewProps { type?: 'horizontal' | 'vertical'; style?: StyleProp; backgroundColor?: string; height?: number; width?: number; top?: number; bottom?: number; left?: number; right?: number; } declare function Divider(props: DividerProps): JSX.Element; declare namespace Divider { var defaultProps: { type: string; top: number; left: number; right: number; bottom: number; }; } declare const _default: React.MemoExoticComponent; export default _default;