declare const Styled: {
    container: {
        backgroundColor: string;
    };
    titleWrapper: {
        flexDirection: "row";
        justifyContent: "space-between";
        alignItems: "center";
        backgroundColor: string;
    };
    twTitle: {
        color: string;
        fontSize: number;
        fontWeight: "bold";
        paddingLeft: number;
    };
    twSubTitle: {
        color: string;
        fontSize: number;
        paddingLeft: number;
    };
    twMoreTitle: {
        color: string;
        fontSize: number;
        paddingRight: number;
    };
    itemBlock: {
        marginRight: number;
        alignItems: "center";
    };
    itemInput: {
        backgroundColor: string;
        borderRadius: number;
        flexDirection: "row";
        paddingLeft: number;
    };
    itemTextSearch: {
        color: string;
        fontSize: number;
        textAlign: "center";
    };
    itemText: {
        color: string;
        fontSize: number;
    };
};
export default Styled;
