import type { ThemeVarType } from '../theme';
export declare const createStyles: (themeVar: ThemeVarType) => {
    bar: {
        height: number;
        width: string;
        justifyContent: "center";
        position: "relative";
        backgroundColor: string;
        paddingHorizontal: number;
    };
    left: {
        position: "absolute";
        top: number;
        bottom: number;
        left: number;
        flexDirection: "row";
        alignItems: "center";
        zIndex: number;
    };
    back_arrow: {
        color: string;
        height: number;
        minWidth: number;
        justifyContent: "center";
    };
    right: {
        position: "absolute";
        top: number;
        bottom: number;
        right: number;
        flexDirection: "row";
        alignItems: "center";
        zIndex: number;
    };
    title_text: {
        color: string;
        textAlign: "center";
        fontSize: number;
        fontWeight: "bold";
    };
};
