UNPKG

226 BTypeScriptView Raw
1import type { FC } from 'react';
2import { NativeProps } from '../../utils/native-props';
3export declare type SafeAreaProps = {
4 position: 'top' | 'bottom';
5} & NativeProps;
6export declare const SafeArea: FC<SafeAreaProps>;