import React from 'react'; import { type ViewProps } from 'react-native'; export type Props = ViewProps & { variant?: any; lightColor?: string; darkColor?: string; value?: number; }; declare const SeparatorComponent: ({ style, value, ...otherProps }: Props) => React.JSX.Element; export default SeparatorComponent; //# sourceMappingURL=ActionSheet.d.ts.map