declare const Styled: {
    container: {
        flex: number;
        resizeMode: "cover";
        position: "relative";
    };
    titleWrapper: {
        flexDirection: "row";
        justifyContent: "space-between";
        alignItems: "center";
    };
    twTitle: {
        color: string;
        fontSize: number;
        fontWeight: "bold";
        marginRight: number;
    };
    twSubTitle: {
        color: string;
        fontSize: number;
    };
    twMoreTitle: {
        color: string;
        fontSize: number;
    };
    titlebarARow: {
        flexDirection: "row";
        alignItems: "center";
    };
    titlebarTwoRow: {};
    item: {
        flexDirection: "row";
        justifyContent: "center";
        alignItems: "center";
        flexWrap: "wrap";
        width: number;
        overflow: "hidden";
    };
    title: {
        fontSize: number;
        color: string;
        paddingLeft: number;
    };
    price: {
        fontSize: number;
        color: string;
        textAlign: "center";
    };
    paginationStyleItem: {
        width: number;
        height: number;
        borderRadius: number;
        marginLeft: number;
        marginRight: number;
    };
    paginationStyleItemActive: {
        width: number;
    };
};
export default Styled;
