import { FC } from 'react';
import { BasicComponent } from '../../utils/typings';
export interface SafeAreaProps extends BasicComponent {
    position: 'top' | 'bottom';
}
export declare const SafeArea: FC<SafeAreaProps>;
