import { ReactNode } from 'react'; import type { Styles } from '@cleartrip/ct-design-types'; export interface SafeAreaInsets { top?: number; bottom?: number; left?: number; right?: number; } export interface SafeAreaContextType { insets: SafeAreaInsets; handleInsets?: (insets: SafeAreaInsets) => void; } export interface ISafeAreaProvider { children: ReactNode; initialMetrics?: SafeAreaInsets; } export interface SafeAreaContainerStyleConfigProps { root?: Styles[]; } export interface ISafeAreaContainer { children: ReactNode; styleConfig?: SafeAreaContainerStyleConfigProps; } //# sourceMappingURL=type.d.ts.map