export declare const globalStyles: {
    colCenter: {
        justifyContent: "center";
        alignItems: "center";
    };
    colStart: {
        justifyContent: "center";
        alignItems: "flex-start";
    };
    colBetween: {
        justifyContent: "space-between";
    };
    rowCenter: {
        flexDirection: "row";
        justifyContent: "center";
        alignItems: "center";
    };
    rowBetween: {
        flexDirection: "row";
        justifyContent: "space-between";
        alignItems: "center";
    };
    rowBetweenNoCenter: {
        flexDirection: "row";
        justifyContent: "space-between";
    };
    rowAround: {
        flexDirection: "row";
        justifyContent: "space-around";
        alignItems: "center";
    };
    rowStart: {
        flexDirection: "row";
        justifyContent: "flex-start";
        alignItems: "center";
    };
    rowEnd: {
        flexDirection: "row";
        justifyContent: "flex-end";
        alignItems: "center";
        alignSelf: "flex-end";
    };
    undeline: {
        textDecorationStyle: "solid";
        textDecorationLine: "underline";
    };
    container: {
        flex: number;
    };
    shadowProp: {
        shadowColor: string;
        shadowOffset: {
            width: number;
            height: number;
        };
        shadowOpacity: number;
        shadowRadius: number;
    };
    shadowElevation: {
        elevation: number;
        shadowColor: string;
    };
    appContainer: {
        flex: number;
        backgroundColor: string;
        paddingVertical: number;
    };
};
