/// <reference types="react" />
import { ReactNode } from 'react';
export interface NavBarProps {
    children?: ReactNode;
    style?: React.CSSProperties | {} | Array<{}>;
    hideNav?: boolean;
    icon?: any;
    leftContent?: any;
    onLeftPressed?: any;
    rightContent?: any;
}
export interface StatusBarProps {
    barStyle: "default" | "light-content" | "dark-content";
    hidden?: boolean;
    translucent?: boolean;
    animated?: boolean;
}
