import { FC } from 'react'; import { BasicComponent } from '../../utils/typings'; export interface SafeAreaProps extends BasicComponent { /** * 安全区的位置 * @default - */ position: 'top' | 'bottom' } export declare const SafeArea: FC;