/** * @license * Copyright Akveo. All Rights Reserved. * Licensed under the MIT License. See License.txt in the project root for license information. */ import React from 'react'; import { ViewProps } from 'react-native'; import { Overwrite, LiteralUnion } from '../../devsupport'; import { StyledComponentProps } from '../../theme'; type DividerStyledProps = Overwrite; }>; export type DividerProps = ViewProps & DividerStyledProps; export type DividerElement = React.ReactElement; /** * A divider is a thin line that groups content in lists and layouts. * * @property {ViewProps} ...ViewProps - Any props applied to View component. * * @overview-example DividerSimpleUsage */ export declare class Divider extends React.Component { render(): React.ReactElement; } export {};