native-base
Version:
Essential cross-platform UI components for React Native
12 lines (11 loc) • 929 B
TypeScript
import type { SafeAreaProps } from './../../components/types/ExtraProps';
export declare function calculatePaddingProps(safeAreaProps: SafeAreaProps, paddingProps: any, insets: any, sizes: any): Partial<any>;
export declare function calculatePaddingTop(safeAreaProps: SafeAreaProps, paddingProps: any, insets: any, sizes: any): string | undefined;
export declare function calculatePaddingBottom(safeAreaProps: SafeAreaProps, paddingProps: any, insets: any, sizes: any): string | undefined;
export declare function calculatePaddingLeft(safeAreaProps: SafeAreaProps, paddingProps: any, insets: any, sizes: any): string | undefined;
export declare function calculatePaddingRight(safeAreaProps: SafeAreaProps, paddingProps: any, insets: any, sizes: any): string | undefined;
export declare function getSortedProps(props: any): {
safeAreaProps: Partial<any>;
paddingProps: Partial<any>;
sansPaddingProps: Partial<any>;
};