import React from 'react'; import { ViewProps } from 'react-native'; declare type SeparatorProps = ViewProps & { size?: 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl' | 'xxxl'; padding?: boolean; /** * Line mode draws only the line without paddings. */ line?: boolean; direction?: 'top' | 'bottom'; }; export declare const Separator: React.FC; export {};