import * as React from 'react'; import { View } from 'react-native'; import type { ZestUIComponentProps, Orientation } from '../types'; /** * A separator element accessible to screen readers. * Renders a ``. */ export declare function Separator(componentProps: Separator.Props): React.ReactElement>; export interface SeparatorProps extends ZestUIComponentProps { /** * The orientation of the separator. * @default 'horizontal' */ orientation?: Orientation | undefined; } export interface SeparatorState { /** * The orientation of the separator. */ orientation: Orientation; } export declare namespace Separator { type Props = SeparatorProps; type State = SeparatorState; } //# sourceMappingURL=Separator.d.ts.map