import { FC } from 'react'; import { ViewProps } from 'react-native'; interface SeparatorProps extends Partial { /** * Orientation of the separator * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; } /** A Separator is a UI component used to visually divide content into distinct sections, often represented as a line or space to enhance clarity and organization in layouts */ declare const Separator: FC; export { Separator, type SeparatorProps };