export declare type SystemBarStyle = "light-content" | "dark-content";
export declare type StatusBarProps = {
    animated?: boolean;
    barStyle: SystemBarStyle;
};
export declare type NavigationBarProps = {
    barStyle: SystemBarStyle;
};
export declare type SystemBarsProps = StatusBarProps;
