import { PureComponent } from 'react';
import { ViewStyle } from 'react-native';
interface Props {
    style?: ViewStyle;
    vertical?: boolean;
    width?: number;
    color?: string;
}
export declare class DividerLine extends PureComponent<Props> {
    static defaultProps: {
        style: {};
        vertical: boolean;
        width: number;
        color: string;
    };
    render(): JSX.Element;
}
export {};
