export declare const style: {
    item: {
        minHeight: number;
        display: "flex";
        alignItems: "center";
        justifyContent: "center";
    };
    active_first_item: {
        backgroundColor: string;
    };
    not_active_first_item: {
        backgroundColor: string;
    };
    active_nth_item: {
        backgroundColor: string;
        borderWidth: number;
        borderRadius: number;
        marginLeft: number;
        marginBottom: number;
    };
    not_active_nth_item: {
        backgroundColor: string;
        borderColor: string;
        borderWidth: number;
        borderRadius: number;
        marginLeft: number;
        marginBottom: number;
    };
};
