import * as React from 'react'; import { View } from 'react-native'; interface SeparatorProps extends React.ComponentProps { orientation?: 'horizontal' | 'vertical'; } declare function Separator({ className, orientation, ...props }: SeparatorProps): import("react/jsx-runtime").JSX.Element; export { Separator }; export type { SeparatorProps }; //# sourceMappingURL=separator.d.ts.map