import * as React from "react"; import { INodeSeparatorImmutable, INodeSeparatorOptions, NodeSeparatorThickness, NodeType } from "@ef-carbon/dom"; import IBaseProps from "../IProps"; export interface IProps extends INodeSeparatorOptions, IBaseProps { } export interface IState { width?: number; height?: number; } declare class Separator extends React.PureComponent implements INodeSeparatorImmutable { constructor(props: IProps); render(): React.ReactNode; readonly type: NodeType.Separator; readonly thickness: NodeSeparatorThickness; private readonly handlePress; private readonly handleLongPress; private readonly clamped; private readonly handleLayout; } export interface IStatic extends React.ComponentClass { } declare const component: IStatic; export { component as Component }; export default Separator;