declare const Styled: {
    container: {
        backgroundColor: string;
    };
    titleWrapper: {
        flexDirection: "row";
        justifyContent: "space-between";
        alignItems: "center";
        paddingTop: number;
        paddingBottom: number;
    };
    twTitle: {
        fontSize: number;
        fontWeight: "bold";
        paddingLeft: number;
    };
    twSubTitle: {
        color: string;
        fontSize: number;
        paddingLeft: number;
    };
    twMoreTitle: {
        color: string;
        fontSize: number;
        paddingRight: number;
    };
    itemWrap: {
        flexDirection: "row";
        justifyContent: "flex-start";
    };
    marginBottom0: {
        marginBottom: number;
    };
    marginBottom20: {
        marginBottom: number;
    };
    item: {
        justifyContent: "center";
        alignItems: "center";
        flex: number;
    };
    text: {
        fontSize: number;
        marginTop: number;
        width: number;
        textAlign: "center";
    };
};
export default Styled;
