native-base
Version:
Essential cross-platform UI components for React Native
14 lines (13 loc) • 657 B
TypeScript
/// <reference types="react" />
import type { ColorSchemeType } from '../../../components/types';
import type { InterfaceStackProps } from '../../primitives/Stack/Stack';
export declare type IAppBarProps = InterfaceStackProps & {
colorScheme?: ColorSchemeType;
statusBarHeight?: number;
space?: number;
};
export declare type IAppBarComponentType = ((props: IAppBarProps) => JSX.Element) & {
Left: React.MemoExoticComponent<(props: InterfaceStackProps) => JSX.Element>;
Right: React.MemoExoticComponent<(props: InterfaceStackProps) => JSX.Element>;
Content: React.MemoExoticComponent<(props: InterfaceStackProps) => JSX.Element>;
};