native-base
Version:
Essential cross-platform UI components for React Native
7 lines (6 loc) • 332 B
TypeScript
import type { CustomProps } from '../../../components/types';
import type { InterfaceBoxProps } from '../../primitives/Box';
export declare type InterfaceContainerProps = InterfaceBoxProps<IContainerProps> & {
centerContent?: boolean;
};
export declare type IContainerProps = InterfaceContainerProps & CustomProps<'Container'>;